当前位置:   article > 正文

openwrt防火墙_-m comment --comment "!fw3

-m comment --comment "!fw3

1、添加新的规则,在vim /etc/config/firewall中,重新导入时会生成iptables识别的规则。
2、iptables的常用指令:
iptables -t nat -F 清空nat表中的规则
iptables -t nat -I zone_wan_postrouting --dest 200.200.200.116
-j ACCEPT 规则接收数据包,但不进行nat转换,-j MASQUERADE为进行nat转换。
iptables-save 和 iptables -t nat -nvL 查看iptables的规则。
3、iptables-save查看规则:
-A PREROUTING -i br-lan -m comment --comment “!fw3” -j zone_lan_prerouting 在PREROUTING中追加规则,从br-lan口进的数据包,跳到zone_lan_prerouting链。

-A POSTROUTING -o wan -m comment --comment “!fw3” -j zone_wan_postrouting 在POSTROUTING规则链 中追加规则,从wan口出的数据包,跳到zone_lan_prerouting规则链中。

4、在zone_wan_postrouting 中添加规则,将目的地址为200.200.200.116的包的源地址改为200.200.200.100:
iptables -t nat -I zone_wan_postrouting --dest 200.200.200.116
-j SNAT --to-source 200.200.200.100

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/858296
推荐阅读
相关标签
  

闽ICP备14008679号