linux里怎么永久性添加路由

linux里怎么永久性添加路由,第1张

如果是添加网关的话,在

/etc/sysconfig/network文件中指定GATEWAY,

例如:

GATEWAY=192.168.0.254

如果要添加路由的话,

在/etc/rc.d/rc.local中添加一行(例子):

route add -net 192.168.0.0 netmask 255.255.255.0 gw 192.168.0.254 dev eth1

linux下添加路由的方法

一:使用 route 命令添加使用route 命令添加的路由,机器重启或者网卡重启后路由就失效了。

# route del –host 192.168.168.110 dev eth0

二:在linux下设置永久路由的方法:

1.在/etc/rc.local里添加方法:

route add -net 192.168.3.0/24 dev eth0

route add -net 192.168.2.0/24 gw 192.168.3.254

2.在/etc/sysconfig/network里添加到末尾

方法:GATEWAY=gw-ip 或者 GATEWAY=gw-dev

3./etc/sysconfig/static-router :

any net x.x.x.x/24 gw y.y.y.y


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8560993.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-18
下一篇 2023-04-18

发表评论

登录后才能评论

评论列表(0条)

保存