h1

Writing Linux firewall rules w/ IPTables

July 2, 2006


The Linux kernel, since version 2.0, has included the capabilities to act as a firewall. In those days, the kernel module was called ipfwadm and was very simple. With the 2.2 kernel, the firewall module became called ipchains and had greater capabilities than its predecessor. Today, we have IPTables, the firewall module in the kernel since the 2.4 days. IPTables was built to take over ipchains, and includes improvements that now allow it to compete against some of the best commercial products available in the market. This guide will give you some background on IPTables and how to use it to secure your network.

Getting to know some important terminology
IPTables can be used in three main jobs: NAT, Packet Filtering, and Routing.

  • NAT stands Network Address Translation, and it is used to allow the use of one public IP address for many computers.
  • Packet Filteringstateless firewall and the other is stateful firewall. Stateless firewalls do not have the ability to inspect incoming packets to see if the packet is coming from a known connection originating at your computer. Stateful firewalls have the ability to inspect each packet to see if it’s part of a known connection, and if the packet is not part of a known, established connection then the packet is “dropped” or not allowed to pass through the firewall.
  • Routing is used to route various network packets to different ports, which are similar to Airport gates, or different IP addresses depending on what is requested. For example, if you have a web server somewhere in your network that uses port 8080, you can use Linux’s packet routing to route port 80 packets to your server’s port 8080. More on all this this later on.

A word on tables
There are three table types: filter, NAT, and mangle.

  • Filter – this is the default table type and contains most of the chains including input, output, and forward.
  • NAT – this table is used when new connections are created. It contains only three chains: prerouting, output, and postrouting.
  • Mangle – is used to alter packets.

The importance of chains…
There are three built-in chains that are part of IPTables.

  • The INPUT chain is used for packets comming into the Linux box. This chain can be used to stop certain packets from coming into the network or system, so for example, if would prevent another computer from pinging your network.. I will talk more about stopping ping attacks later.
  • The OUTPUT chain is used for packets coming out of your Linux box. This chain can be used to stop certain packets that you do not want to leave your network or system.
  • The FORWARD chain is used for packets passing through the network’s firewall. This chain will be used to set our NAT rules. I will go into the syntax of a basic NAT filter later in this article.
  • The PREROUTING chain is for changing packets as they come in
  • The POSTROUTING chain is for changing packets as they leave

Every chain in IPTables is either user-defined or built-in and will have a default policy, which can be either ACCEPT or DROP. ACCEPT and DROP will be discussed in the next section.

Packet targets
IPTables has targets which denotes what happens to all packets. There are four built-in targets:

  • ACCEPT – denotes if the packet should be allowed to move on.
  • DROP – denotes if the packet should be dropped and ignored.
  • QUEUE – denotes if the packet should be passed to userspace.
  • RETURN – denotes if the packet should be passed to the previous chain. Should this happen, then the packet is governed by the default policy of the previous chain.

For the most part I will be using ACCEPT and DROP targets for the sake of simplicity. These two targets are also more than enough to create your firewall rules. Please note that while there are predefined chains, they can also be a user-defined.

NAT, one IP for them all
NAT is one of the best tricks for networking; it allows one IP address to be used by many computers so they can all access the internet. NAT on your network would work through the rewriting the packet by changing the source IP address to read your internet IP address as it passes out of your network. When a packet needs to return to the source, the packet’s destination IP address is changed back to the computer’s IP address inside your network. For example, if your computer with an IP address of 192.168.1.2 needed to get to Google, whose IP address is 216.239.57.99, the NAT firewall would change 192.168.1.2 to something like 64.199.1.83 and would then be passed throught the internet to Google. When Google sends a response, the IP address is changed from 64.199.1.83 to 192.168.1.2 and is received at your computer inside the network.

To write IPTables rules you will need to open a command prompt, but there are some graphical apps to help you out. One application that makes writing IPTables rules simple is Firestarter for GNOME. KDE users can benefit from an application like knetfilter.

Firestarter Firestarter Policy Manager

Some notes on IPTables syntax
IPTables chain syntax can be confusing, particularly for beginners, but once you have the basics down, anyone can learn to write their own firewall rules; be patient, it just takes time. It took me about 3 months to figure out how to write a rule to block ICMP packets which are used to ping computers. IPTables syntax looks like this: iptables -t filter -A INPUT -p icmp -i eth0 -j DROP.

  • The -t filter specifies that this rule will go into the filter table. If you wanted to write a NAT rule you would type -t nat.
  • The -A INPUT specifies that the rule is going to be appended to the INPUT chain. Other possible syntax would be -A OUTPUT, -A FORWARD, -A PRETROUTING, and-A POSTROUTING.
  • The -p icmp specifies that the packet has be from the ICMP protocol. The other two options are -p tcp used for TCP packets, and -p udp used for UDP packets.
  • The -i eth0 specifies that the packet has to be coming in via the eth0 interface or your first network device.
  • The -j DROP that if the packet matches it should be dropped. This rule is to stop people from using finger (used to see who else is on the system) , ping (used to check if a server is responding), or other methods to discover your network.

The next two rules are going to do the work of blocking connections not originating from inside your network.

iptables -A FORWARD -o eth0 -j ACCEPT
iptables -A FORWARD -i eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT

The -m state --state ESTABLISHED,RELATED was used to match the state of the packet coming in via eth0 (your ethernet device) and if the packet matches, then the packet is accepted. The -m is used to match on a specific option. Some possible options are -m limit --limit which looks for a limited rate, -m tos --tos used to match the TOS IP header field on a packet, -m unclean which is used to match packets that look “suspicious”.

The next rule is going to do source NAT, which will allow your network to connect using one IP address.

iptables -t nat -A POSTROUTING -o eth0

Depending on if you have a Static IP or Dynamic IP you would type: -j SNAT --to-source 1.2.3.4 for Static IP, and -j MASQUERADE for Dynamic IP at the end of the above code. As a bonus, i’ll tell you how to do destination NAT, which will allow you to put a server behind the firewall at the expense of security.

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport www -j DNAT --to-dest 192.168.1.2

The --dport www denotes that the destination port is port 80. You can use text like www (port 80) or ftp (port 21) or simply use port numbers. The -j DNAT part of the rule is the target, similar to -j DROP or -j ACCEPT in previous examples. --to-dest 192.168.1.2 tells IPTables where you want the packet to go. --sport 8080 is just like --dport www.

For three years i have writen my own firewall rules. IPTables saved my computer from MyDoom and Sasser worms/viruses. Hopefully, now you too can write your own firewall rules. IPTables is a usefull tool in the Linux user’s tool belt, for protecting Linux and Windows computers.

16 comments

  1. Earlier I had lot of confusions with IPTABLES. This page is Excellent and Good


    • Its a sham really, … Its a sham really, I&27#18;m used to watching F1 and i made my step over to this. This is soooo much better then F1 +2Was this answer helpful?


  2. Hallo,
    in my Webmin – Networking – Linux Firewall interface i can set the rule for blocking access to websites, e.g. hotmail.com from inside network. How can i block access to more compex addresses, e.g. https://www.apollo.lv/portal/register/login/?webmail=1, or something like this? Is it possible with firewall rules? Thanks. Bruno.

    If you block apollo.lv , it will block the entire URL. You can also use the IPtables string match option to do complex stuffs like blocking dangerous hacking or rookit type urls.


    • Eredetileg egy barátnak íródott, akinek abban az éhe©lelyzetÃtben szüksége volt csodákra. Ugyanúgy, mint a az eredeti történetben a kislánynak. És igen, nekem a mesérÅ‘l és a kislányról ez a történetem jutott az eszembe.


  3. Hi,

    You can use squid caching proxy with iptables. Use iptables to transparently redirect all http requests to your squid port and the filter urls with the help of squid ACLs.

    Squid Transparent Proxying
    ############################
    ############## Squid Transparent Proxying and http redirection ##########
    /sbin/iptables -t nat -A PREROUTING -p tcp –dport 80 -i eth0 -j REDIRECT –to-port 3128 ( where eth0 is your internal network card or the only network card)

    Squid options that needs enabled ( for SQUID 2 ################################################
    httpd_accel_host virtual
    httpd_accel_port 80
    httpd_accel_with_proxy on
    httpd_accel_uses_host_header on

    visit:-
    http://squid-cache.org for more details

    Thanks


  4. hi,

    i’m new to iptables thing and im using firestarter as a firewall. i know there is a way that a website can pass thru without going to squid via an iptable rule.i have this problem with my squid proxy that some sites wont load at when it goes thru it. anybody has done this already?

    thanks
    Joel


  5. can you provide more details on your squid proxy setup and iptables rules you are using.


  6. squid is setup as transparent proxy caching server using the old 2.5 stable 6 version(mandrake 10.1).the only iptable rule that ive added on my firestarter firewall(in the user-pre) is this:

    $IPT -t nat -A PREROUTING -p tcp –dport 80 -i $INIF -j REDIRECT –to-port 3128

    ($INIF = LAN interface)

    which is the redirect rule for squid from port 80 to 3128

    joel


    • Asâsmalua€™alaikumSaya berminat menjadi Agen/Distributor untuk wilayah padang, apa saja syaratnya?Pembelanjaan minimal brp?Mekanisme order & pengiriman barang gmn?Salam,zuhra


    • Hi, I am a manga dealer who would like to set up at your coeonntivn this year (or the year after if next year is already booked). I sell manga, video games, pocky and ramune and usually bring 9000 manga, which I set up on bookcases. I can bring more/less based on available space. I can send pics of my set up if needed and would appreciate any info that you can give me in regards to the show. Thanks, Matt DeRoma (860) 803-1965


    • You have finished approximately decent points there. I checkered by the web to hear additional regarding the issue and establish mainly community will get along with your views on this site.


  7. Hi,

    Thank you for this gr8 tutorial for beginners. I now know basics of setting fire wall rules in IP tables. I use ubuntu and using guarddog firewall application. It is a GUI based application and has some preset rules for most common vulnerable protocals. You just have to Accept, Reject these presets and you are good to go.

    If you have written further tutorials then please provide links to those.

    Thank you!!!!


  8. I ‘ve added iptables category, which will filter iptables related posts only. More to come in future as I get time. I don’t post actively or visit the site, I post it, when I am in the mood 🙂


  9. Gr8 tutorial, hopefully I will be able to passthrough Windows RDP 🙂


  10. good one



Leave a comment