在Debian系统中,你可以使用iptables-save
命令来备份iptables规则
sudo iptables-save > /path/to/your/backup/iptables_rules.rules
这将会把当前的iptables规则保存到一个名为iptables_rules.rules
的文件中。你可以将这个文件复制到其他地方,以便在需要时恢复规则。
要恢复iptables规则,你可以使用iptables-restore
命令:
sudo iptables-restore < /path/to/your/backup/iptables_rules.rules
这将会在当前系统上应用备份的iptables规则。