美文网首页
linux 添加主机静态路由

linux 添加主机静态路由

作者: 醉眼看人间_个个都温柔 | 来源:发表于2020-11-20 14:58 被阅读0次
因为 /etc/init.d/network 脚本中有检测路由模块
[root@localhost ysw]# cat /etc/init.d/network  | grep  -A3 static-routes
        # Add non interface-specific static-routes.
        if [ -f /etc/sysconfig/static-routes ]; then
           grep "^any" /etc/sysconfig/static-routes | while read ignore args ; do
              /sbin/route add -$args
           done
        fi    
[root@localhost ysw]# 
因此创建/etc/sysconfig/static-routes文件即可
[root@localhost ysw]# cat /etc/sysconfig/static-routes
any net 172.17.2.0/24 gw 172.17.2.129
[root@localhost ysw]#
重启网卡生效
[root@localhost ysw~]# service network restart

路由将在每次重启网卡服务的时候写入,不建议将路由写在/etc/rc.local中,因为那样必须重启主机才会生效。

相关文章

网友评论

      本文标题:linux 添加主机静态路由

      本文链接:https://www.haomeiwen.com/subject/tebdiktx.html