2016 - 2024

感恩一路有你

centos7添加路由命令 linux添加路由指令到指定的网卡?

浏览量:2775 时间:2021-03-17 21:52:36 作者:admin

linux添加路由指令到指定的网卡?

方法如下:

1:使用route命令添加路由

机器重启或网卡重启后,用route命令添加的路由将无效。方法:

//route add to the host

#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 eth0

#route add–net 192.168.1.11 netmask 255.255.255.0 GW 192.168.1.1

#routeadd–net 192.168.1.0/24 eth1

//添加默认网关

#route add default gw 192.168.2.1

//删除路由

#route del–host 192.168.1.11 dev eth0

centos7添加路由命令 linux添加永久静态路由 linux多网卡路由配置

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。