码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS7添加永久路由之一

时间:2019-05-08 16:09:28      阅读:514      评论:0      收藏:0      [点我收藏+]

标签:route add   添加   nat   rc.local   ref   启动   start   net   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 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

四,验证

[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亦可。

CentOS7添加永久路由之一

标签:route add   添加   nat   rc.local   ref   启动   start   net   network   

原文地址:https://blog.51cto.com/zhangchengjie/2391061

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!