iptables防火墙配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iptables防火墙配置相关的知识,希望对你有一定的参考价值。
仅允许其他机器访问服务器的80端口,其他端口拒绝
iptables -A INPUT -p tcp --dport 80 -d 192.168.10.150 -j ACCEPT iptables -A INPUT -d 192.168.10.150 -j ACCEPT
2. 将192.168.10.150的8080端口映射到192.168.10.150的80端口
iptables -t nat -A PREROUTING -d 192.168.10.150 -p tcp --dport 8080 -j DNAT --to 192.168.10.150:80
3.
本文出自 “搁浅丶” 博客,请务必保留此出处http://yasar.blog.51cto.com/9120455/1886693
以上是关于iptables防火墙配置的主要内容,如果未能解决你的问题,请参考以下文章
CentOS下配置iptables防火墙 linux NAT(iptables)配置
Ubuntu使用iptables配置防火墙提示:unrecognized service(Ubuntu配置iptables防火墙)