每次我重新启动服务器或“systemctl restart network”时,我都必须添加静态路由
Rhel 7.8
ip route add 192.168.1.1 dev ens192 proto static scope link metric 100
ip route add 192.168.2.0/24 dev ens192 proto kernel scope link src 192.168.2.11 metric 100
ip route add default via 192.168.1.1 dev ens192 proto static metric 100
以下是添加的内容:
# ip route
169.254.0.0/16 dev ens192 scope link metric 1002
172.16.2.0/24 dev ens192 proto kernel scope link src 172.16.2.11
如何使路线静态
# ip route
default via 172.16.1.1 dev ens192 proto static metric 100
172.16.1.1 dev ens192 proto static scope link metric 100
172.16.2.0/24 dev ens192 proto kernel scope link src 172.16.2.11 metric 100
答案1
通过命令行添加 IP 路由只是暂时的,要永久添加路由,您必须将它们添加到每个接口的文件中/etc/sysconfig/network-scripts/
。