Construct an iptables rules file from fragments.
Constructs an iptables rules file from the prefix, standard, and suffix files in the iptables configuration area, adding any additional modules specified in the command line, and prints the resulting iptables rules to standard output (suitable for saving into /var/lib/iptables or some other appropriate location on the system).
The following platforms are supported by this cookbook, meaning that the recipes run on these platforms without error:
- Ubuntu
- Debian
- CentOS
- Red Hat
- Fedora
Write iptables
rule fragments and place them in /etc/iptables.d
. Running this script will assemble them in order and reset the firewall rules.
For example, we have three rule-file:
/etc/iptables.d/vagrant
# Vagrant boxes forwarding rules for public static ip
*filter
# Vagrand boxes forwarding ports
-A FORWARD -p tcp -d 192.168.5.10 --dport 80 -j ACCEPT
-A FORWARD -p tcp -d 192.168.5.10 --dport 22 -j ACCEPT
*nat
# Nat all traffic to vagrant boxes
-A PREROUTING -d 192.168.25.2 -p tcp -j DNAT --to-destination 192.168.5.10
-A POSTROUTING -j MASQUERADE
COMMIT
/etc/iptables.d/all_icmp
# ICMP
-A FWR -p icmp -j ACCEP
/etc/iptables.d/all_estabilished
# Any established connection is money
-A FWR -m state --state RELATED,ESTABLISHED -j ACCEPT
They are produce /etc/iptables/general
*filter
:INPUT ACCEPT [0,0]
:FORWARD ACCEPT [0,0]
:OUTPUT ACCEPT [0,0]
:FWR -
# Any established connection is money
-A FWR -m state --state RELATED,ESTABLISHED -j ACCEPT
# ICMP
-A FWR -p icmp -j ACCEPT
# Vagrant boxes forwarding rules for public static ip
# Vagrand boxes forwarding ports
-A FORWARD -p tcp -d 192.168.5.10 --dport 80 -j ACCEPT
-A FORWARD -p tcp -d 192.168.5.10 --dport 22 -j ACCEPT
COMMIT
*nat
:PREROUTING ACCEPT [0,0]
:POSTROUTING ACCEPT [0,0]
:OUTPUT ACCEPT [0,0]
# Nat all traffic to vagrant boxes
-A PREROUTING -d 192.168.25.2 -p tcp -j DNAT --to-destination 192.168.5.10
-A POSTROUTING -j MASQUERADE
COMMIT
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
- @numbata
- add chain and tables rule definitions
- @hamann
- fix chain definitions
- @juliandunn
- add support for Amazon Linux
- @jordant
- add raw/security table type definitions
- @YellowApple
- update interpreter path specification
rebuild-iptables
- Freely distributable and licensed under the MIT license.
- Copyright (c) 2011-2014 Phil Cohen (github@phlippers.net)
- http://phlippers.net/