双网卡的linux系统中,同时使用2个网关时,需要加一条静态路由。
一,使用 route 命令添加路由信息
复制代码代码示例:
//添加到主机的路由
# route add –host 192.168.1.11 dev eth0 # route add –host 192.168.1.12 gw 192.168.1.1 //添加到网络的路由 # route add –net 192.168.1.11 netmask 255.255.255.0 eth0 # route add –net 192.168.1.11 netmask 255.255.255.0 gw 192.168.1.1 # route add –net 192.168.1.0/24 eth1 //添加默认网关 # route add default gw 192.168.2.1 //删除路由 # route del –host 192.168.1.11 dev eth0
二,在linux下设置永久路由的方法:
2,在/etc/sysconfig/network里添加到末尾
3,修改static-routes文件 /etc/sysconfig/static-routes。
解决NFS问题的描述:
static-routes是什么文件?
复制代码代码示例:
# Add non interface-specific static-routes.
if [ -f /etc/sysconfig/static-routes ]; then grep "^any" /etc/sysconfig/static-routes | while read ignore args ; do /sbin/route add -$args done fi
以上脚本就是添加静态路由的方法,static-routes写法为:
复制代码代码示例:
any net 192.168.0.0/16 gw 网关ip
(责任编辑:IT) |