Linux系统下添加静态路由

时间:2021-12-24 08:19:55

操作环系统:CentOS-6.4-X86_64

一:使用 route 命令添加
使用route 命令添加的路由,机器重启或者网卡重启后路由就失效了,方法:
//添加到主机的路由
# route add –host 192.168.1.2 dev eth0
# route add –host 192.168.1.3 gw 192.168.1.1
//添加到网络的路由
# route add –net 192.168.1.2 netmask 255.255.255.0 eth0
# route add –net 192.168.1.2 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.2 dev eth0


二:在linux下设置永久路由的方法:
1.在/etc/rc.local里添加
方法:
route add -net 192.168.1.0/24 dev eth0
route add -net 192.168.2.0/24 gw 192.168.2.254

2.在/etc/sysconfig/network里添加到末尾
方法:GATEWAY=gw-ip 或者 GATEWAY=gw-dev

3./etc/sysconfig/static-routes :
any net 192.168.1.0/24 gw 192.168.1.254
any net 192.168.2.2 netmask 255.255.255.0 gw 192.168.2.1

如果在rc.local中添加路由会造成NFS无法自动挂载问题,所以使用static-routes的方法是最好的。无论重启系统和service network restart 都会生效