iptables 路由转发

#!/bin/bash
echo 1 >/proc/sys/net/ipv4/ip_forward
iptables –flush
iptables -t nat –flush
iptables -t nat –delete-chain
iptables -t nat –append POSTROUTING -o eth0 -j MASQUERADE
iptables –append FORWARD -i eth0 -j ACCEPT

发表评论

您的电子邮箱地址不会被公开。