linux – 试图了解在CentOS中创建静态路由的正确方法,请协助

前端之家收集整理的这篇文章主要介绍了linux – 试图了解在CentOS中创建静态路由的正确方法,请协助前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直试图了解在CentOS 6.x机器上添加静态路由的正确方法是什么.
在一些论坛中,他们说用相关路由创建一个名为route-dev_name的文件(例如route-eth0)并将其放在/ etc / sysconfig / network-scripts中,在某些论坛中他们说文件应该命名为static-routes,在这两种情况下我都无法设置静态路由.在某些CentOS版本中,它似乎只在命名文件route-dev_name时有效,而在某些版本中,只有在命名文件static-routes时才有效.
有人可以帮助我吗?
这是我的路线文件内容
192.168.20.0/24 via 192.168.20.253 dev eth0

提前致谢

解决方法

使用/ etc / sysconfig / network-scripts / route-device文件定义的RH样式设备相关路由导致了许多问题.

所以真正的系统管理员只使用没有设备依赖的/ etc / sysconfig / static-routes文件

any net 10.0.0.0 netmask 255.255.255.0 gw 192.168.0.1

问题:

>当物理设备被绑定时,您还需要记住路由设备文件
>重新组织虚拟机中的适配器时.

当然应该总是使用桥接设备,因此可以避免路由设备文件问题.

还要注意/ etc / sysconfig / static-routes文件中的语法,来自的sniplet
/etc/init.d/network:

# Add non interface-specific static-routes.
    if [ -f /etc/sysconfig/static-routes ]; then
       if [ -x /sbin/route ]; then
           grep "^any" /etc/sysconfig/static-routes | while read ignore args ; do
               /sbin/route add -$args
           done
       else
           net_log $"Legacy static-route support not available: /sbin/route not found"
       fi
    fi
原文链接:https://www.f2er.com/linux/400830.html

猜你在找的Linux相关文章