iptables 允许端口,端口映射,删除iptables

匿名 (未验证) 提交于 2019-12-03 00:40:02
映射端口eth1为外网口
iptables -t nat -A PREROUTING -i eth1 -p tcp -d 183.61.146.150 --dport 80 -j DNAT --to-destination 192.168.0.200:80

查看

iptables -L -n --line-number

删除

iptables -D INPUT 1

允许

iptables -I INPUT -p tcp --dport 7080 -j ACCEPT

原文:http://blog.51cto.com/1014810/2137235

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!