下面我来说下配置步骤:
1.启用内核的ip转发功能。
通过修改文件 /etc/sysctl.c “net.ipv4.ip_forward = 0改成 net.ipv4.ip_forward = 1”,运行命令 # sysctl ╟p 使修改立即生效。
2.选用脚本:iptables ╟t nat ╟a postrouting ╟o eth0 ╟j masquerade
将本行加入随机启动.
3.此例相对简单,当然不要忘记给两块网卡配上IP地址:
/etc/sysconfig/network-scripts/ifcfg-eth0
/etc/sysconfig/network-scripts/ifcfg-eth1 //修改文件
ifc eth0
ifc eth1 //使用命令
在这里我们假定eth0为外网ip地址.