- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
一,默认在系统中添加的路由会随着网络重新启动丢失
[root@vm-al-bj2-web01 ~]# route -nKernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Iface0.0.0.0 192.168.7.254 0.0.0.0 UG 100 0 0 ens192192.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 -nKernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Iface0.0.0.0 192.168.7.254 0.0.0.0 UG 100 0 0 ens192192.168.0.0 0.0.0.0 255.255.248.0 U 100 0 0 ens192192.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 -nKernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Iface0.0.0.0 192.168.7.254 0.0.0.0 UG 100 0 0 ens192192.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-ens192ADDRESS0=192.168.13.0NETMASK0=255.255.255.0GATEWAY0=192.168.7.254
四,验证
[root@vm-al-bj2-web01 ~]# systemctl restart network[root@vm-al-bj2-web01 ~]# route -nKernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Iface0.0.0.0 192.168.7.254 0.0.0.0 UG 100 0 0 ens192192.168.0.0 0.0.0.0 255.255.248.0 U 100 0 0 ens192192.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亦可。
售前咨询
售后咨询
备案咨询
二维码
TOP