PDA

View Full Version : iptables


leon
13th May 2005, 17:00
Is it possible to save working iptables firewall rules to a file and use them on another machine?

peter
19th May 2005, 11:33
You can use iptables-save and iptables-restore for it. You can save your firewall rules to a file like that:

iptables-save > /path/to/iptables.rules

Now you can transfer the file iptables.rules to another machine and setup your firewall there with the same rules as on the first machine:

iptables-restore < /path/to/iptables.rules

Peter