Centos 设置iptables端口转发 “Unit iptables.service could not be found”错误

将端口80映射到8080

  • Centos6

iptables -t net -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 8080

service iptables save

service iptables restart

  • Centos7

yum install iptables-services

systemctl enable iptables

iptables -t net -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 8080

service iptables save

systemctl restart iptables

参考文献:

https://blog.csdn.net/nainaiqiuwencun/article/details/80697388

https://blog.csdn.net/at99ak77/article/details/46739043

https://blog.csdn.net/c233728461/article/details/52679558

猜你喜欢

转载自www.cnblogs.com/jhc888007/p/10168383.html
今日推荐