本文共 1633 字,大约阅读时间需要 5 分钟。
命令格式
-A PREROUTING -d 服务器IP -p tcp -m tcp --dport 端口2222 -j DNAT --to-destination 内网IP:22 -A POSTROUTING -s 192.168.10.0/255.255.255.0 -o 网卡eth0 -j SNAT --to-source 服务器IP直接修改/etc/sysconfig/iptables
-A PREROUTING -d 192.168.68.132 -p tcp -m tcp --dport 2222 -j DNAT --to-destination 192.168.10.253:22 -A POSTROUTING -s 192.168.68.0/255.255.255.0 -o eth0 -j SNAT --to-source 192.168.68.132或者使用命令
iptables -t nat -A PREROUTING -d 192.168.68.132 -p tcp -m tcp --dport 2222 -j DNAT --to-destination 192.168.10.253:22 iptables -t nat -A POSTROUTING -s 192.168.68.0/255.255.255.0 -o eth0 -j SNAT --to-source 192.168.68.132注意FORWARD
:FORWARD ACCEPT [0:0]检查sysctl
/etc/sysctl.conf net.ipv4.ip_forward = 1 sysctl -p重启IPTABLES
/etc/init.d/iptables restartSHELL脚本
执行脚本后
重启IPTABLES
/etc/init.d/iptables restart
转载地址:http://icego.baihongyu.com/