linux系统怎么添加路由?

linux系统怎么添加路由?,第1张

linux下添加路由的方法:

一:使用 route 命令添加

使用route 命令添加路由,机器重启或者网卡重启后路由就失效了,方法

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

1.在/etc/rc.local里添加

方法:

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

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

3./etc/sysconfig/static-router :

linux 添加永久静态路由

Linux 的路由功能:

# route 命令添加的路由,机器重启或者网卡重启后就没掉了,在linux下设置永久路由的方法:

1.在/etc/rc.local里添加

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

3./etc/sysconfig/static-router :

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

开启 IP 转发:

linux下添加路由的方法:

一:使用 route 命令添加

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

//添加到主机的路由

# route add –host 192.168.168.110 dev eth0

# route add –host 192.168.168.119 gw 192.168.168.1

//添加到网络的路由

# route add –net IP netmask MASK eth0

# route add –net IP netmask MASK gw IP

# route add –net IP/24 eth1

//添加默认网关

# route add default gw IP

//删除路由

# 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

学习Linux,《Linux就该这么学》这本书能提供更全面的学习路线。

1、linux添加路由、查看路由状态、删除路由如下

添加路由:

route add -net 192.168.1.44 netmask 255.255.255.0 gw 192.168.1.1

查看路由状态:

route -n

删除路由:

route del -net 192.168.20.0 netmask 255.255.255.0

2、如果想让重启也生效,可以把添加路由命令写在/etc/rc.local中,即可

# vi /etc/rc.local在最后加下如下

route add -net 192.168.1.44 netmask 255.255.255.0 gw 192.168.1.1


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

原文地址: https://outofmemory.cn/bake/11924564.html

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

发表评论

登录后才能评论

评论列表(0条)

保存