CentOS7添加永久路由之一

一,默認在系統中添加的路由會隨着網絡從新啓動丟失web

[root@vm-al-bj2-web01 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.7.254   0.0.0.0         UG    100    0        0 ens192
192.168.0.0     0.0.0.0         255.255.248.0   U     100    0        0 ens192

二,添加網絡路由vim

[root@vm-al-bj2-web01 ~]# route add -net 192.168.13.0 netmask 255.255.255.0 gw 192.168.7.254
[root@vm-al-bj2-web01 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.7.254   0.0.0.0         UG    100    0        0 ens192
192.168.0.0     0.0.0.0         255.255.248.0   U     100    0        0 ens192
192.168.13.0    192.168.7.254   255.255.255.0   UG    0      0        0 ens192
[root@vm-al-bj2-web01 ~]# systemctl restart network
[root@vm-al-bj2-web01 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.7.254   0.0.0.0         UG    100    0        0 ens192
192.168.0.0     0.0.0.0         255.255.248.0   U     100    0        0 ens192
[root@vm-al-bj2-web01 ~]#

三,添加永久網絡路由(route-ens192是網卡,建議跟隨網卡名)網絡

[root@vm-al-bj2-web01 ~]# vim /etc/sysconfig/network-scripts/route-ens192
ADDRESS0=192.168.13.0
NETMASK0=255.255.255.0
GATEWAY0=192.168.7.254

四,驗證ide

[root@vm-al-bj2-web01 ~]# systemctl restart network
[root@vm-al-bj2-web01 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.7.254   0.0.0.0         UG    100    0        0 ens192
192.168.0.0     0.0.0.0         255.255.248.0   U     100    0        0 ens192
192.168.13.0    192.168.7.254   255.255.255.0   UG    100    0        0 ens192

注意:
1.ADDRESS後面是數字0表示第一條有多條路由就是0,1,2,3依次
2.這種方法只是其中之一,放入/etc/rc.local亦可。rest

相關文章
相關標籤/搜索