如何获得iptables重定向以在SuSE 11上重启?


0

我已经设置iptables从端口80转发到端口8090:

iptables -t nat -I PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8090

但是重新启动后重定向已经消失。什么是规范的SuSE保存iptables配置的位置以及配置它们在重启时重新加载的位置?

Answers:


1

每次重新启动后都会刷新表,但有些方法可以保存配置并在启动时再次加载。

iptables-save > /path/to/file

要加载配置,您只需使用:

iptables-restore < /path/to/file

加载它的最好方法是将restore命令放在接口配置中; 这样它只会在你的界面升级时加载。


请参阅编辑,我是在更详细的SuSE特定答案之后。
罗伯特阿特金斯
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.