How to run iptables automatically after reboot on Debian
If you have customized iptables rules, and would like to load the customized iptables rules persistently across reboots on Debian, you can leverage
if-up.d
scripts that are located in /etc/network/if-up.d
. On Debian, any script that is marked as executable and placed in /etc/network/if-up.d
gets executed when a network interface is brought up.
In order to run iptables automatically after reboot on Debian, do the following.
First, customize iptables as you wish, and then save the current iptables rule-set using iptables-save command.
$ sudo iptables-save > /etc/firewall.conf
The above command will dump the current iptables rule set into /etc/firewall.conf
file which iptables-restore command can later use to restore the same rule set.
Now create the following if-up.d script called iptables that restores the saved iptables rule set.
#!/bin/sh iptables-restore < /etc/firewall.conf $ sudo chmod x /etc/network/if-up.d/iptables
Alternatively, you can add “iptables-restore < /etc/firewall.conf
” command to /etc/rc.local
, which gets executed at the end of system boot-up.
Source: Xmodulo