一:使用 route 命令添加
使用route 命令添加的路由,机器重启或者网卡重启后路由就失效了,方法:
//添加到主机的路由
# route add –host 192.168.168.110 dev eth0
# route add –host 192.168.168.119 gw 192.168.168.1
//添加到网络的路由
# route add –net IP netmask MASK eth0
# route add –net IP netmask MASK gw IP
# route add –net IP/24 eth1
//添加默认网关
# route add default gw IP
//删除路由
# route del –host 192.168.168.110 dev eth0
二:在linux下设置永久路由的方法:
1.在/etc/rc.local里添加
方法:
route add -net 192.168.3.0/24 dev eth0
route add -net 192.168.2.0/24 gw 192.168.3.254
2.在/etc/sysconfig/network里添加到末尾,注意,这里添加的是默认网关
方法:GATEWAY=gw-ip 或者 GATEWAY=gw-dev
3./etc/sysconfig/static-routes :
eth0 net 192.168.2.0/24 gw 192.168.3.254
语法为:device net network netmask netmask gw gateway ,设备可设为any来让系统自动选择。
需注意的是,添加后用 route -n 命令是看不到这条新增的路由的,需要重启网络设备才能生效 #/etc/init.d/network restart
阅读(171) | 评论(0) | 转发(0) |