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 dev 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 dev eth1`
route add default gw 192.168.2.1
route del –host 192.168.1.11 dev eth0
route del -net 192.168.1.0 netmask 255.255.255.0
route del default gw 192.168.1.1
route add -net 192.168.3.0/24 dev eth0
route add -net 192.168.2.0/24 gw 192.168.2.254
GATEWAY=gw_ip 未尝试过
any net 192.168.3.0/24 gw 192.168.3.254
any net 0.0.0.0/0 gw 172.17.2.254 默认路由写法,这里的子网掩码为0
any net 10.250.228.128 netmask 255.255.255.192 gw 10.250.228.129
如果在rc.local中添加路由会造成NFS无法自动挂载问题,所以使用static-routes的方法是最好的。无论重启系统和service network restart 都会生效。
按照linux启动的顺序,rc.local里面的内容是在linux所有服务都启动完毕,最后才被执行的,也就是说,这里面的内容是在NFS之后才被执行的,那也就是说在NFS启动的时候,服务器上的静态路由是没有被添加的,所以NFS挂载不能成功。
格式如下:
network/prefix via gateway dev intf
例如给eth0添加一个默认网关:
vim /etc/sysconfig/network-scripts/route-eth0
添加如下内容(可以省略dev eth0)
0.0.0.0/0 via 172.16.10.2 dev eth0
[root@localhost ~]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
172.16.10.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
169.254.0.0 0.0.0.0 255.255.0.0 U 1002 0 0 eth0
0.0.0.0 172.16.10.2 0.0.0.0 UG 0 0 0 eth0
本文出自 “沙漠骆驼” 博客,请务必保留此出处http://maomaochong.blog.51cto.com/9260445/1864001
centos6.7 route命令使用以及 添加永久路由的方法
原文地址:http://maomaochong.blog.51cto.com/9260445/1864001