|
我用Linux 做NAT 内网架了一台web服务器,
eth1为公网网卡:
$IP1=218.22.44.163
eth0为内网网卡:
$IP2=192.168.0.1
web服务器:
$IP3=192.168.0.2
iptables 我这样写的:
iptables -t nat -A PREROUTING -d $ip1 -p tcp --dport 80 -j DNAT --to $ip3
iptables -t nat -A POSTROUTING -d $ip3 -p tcp --dport 80 -j SNAT --to $ip2
iptables -A FORWARD -o eth0 -d $ip3 -p tcp --dport 80 -j ACCEPT
iptables -A FORWARD -i eth0 -s $ip3 -p tcp --sport 80 -m --state ESTABLISHED -j ACCEPT |
|