1、修改vim /etc/sysctl.conf
将net.ipv4.ip_forward = 0 的值改为net.ipv4.ip_forward = 1
执行sysctl -p 生效
2、执行
iptables -t nat -I PREROUTING -s 22.*.*.204/32 -p udp --dport 30001 -j DNAT --to-destination 22.*.*.204 //增加udp转发规则
iptables -t nat -A PREROUTING -s 22.*.*.204/32 -p tcp -m tcp --dport 10000 -j DNAT --to-destination 22.*.*.204:30000 //增加tcp转发规则
iptables -t nat -A POSTROUTING -j MASQUERADE
service iptables save //保存配置
# -s为源ip,
# --dport 为目的端口
# --to-destination 为目的IP
# -p 为协议
以上配置在Centos 6.5中测试通过
阅读(4191) | 评论(0) | 转发(0) |