Iptables setup masquerading for Linux firewall

by nixcraft on July 15, 2006 · 1 comment

Q. How do I setup masquerading for my Linux iptables firewall? What rules I need to apply or write?

A. Iptables is used to set up, maintain, and inspect the tables of IP packet filter rules in the Linux kernel. Several different tables may be defined. Each table contains a number of built-in chains and may also contain user-defined chains. However, to setup masquerading you need to use special target called MASQUERADE.
This target is only valid in the nat table, in the POSTROUTING chain. It should only be used with dynamically assigned IP (dialup) connections: if you have a static IP address, you should use the SNAT target.

You need to type following rule (or add to your script):

iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

Also set net.ipv4.ip_forward to 1:

net.ipv4.ip_forward=1

See this previous article for more step by step instructions.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 1 comment… read it below or add one }

1 Dipendra April 4, 2008

Hi

i just want to know , how i configure firewall on RHEL 4 , can u give me step by step configuration .
Looking forward

Thanks & Regards
Dipendra

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 13 + 12 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: