分类: LINUX
2014-01-06 14:36:45
环境:
步骤一:合理设置网卡配置和参数
外网卡:
iface eth1 inet static
address 1.1.1.100
netmask 255.255.255.0
network 1.1.1.0
gateway 1.1.1.1
mtu 1500
内网卡:
iface eth0 inet static
address 172.16.0.3
netmask 255.255.0.0
步骤二:修改/etc/sysctl.conf
net.ipv4.ip_forward=1
步骤三:编写.nat.sh, 内容如下:
iptables -F
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE
步骤四:在/etc/rc.local 中添加一条命令
sh ~/.nat.sh
重启测试即可