linux如何添加临时路由,Linux中添加静态路由的方法(临时的和永久的)
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 ne
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
修改过的文件
/etc/rc.d/rc.local 文件
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
route add -net 172.16.0.0 netmask 255.255.0.0 gw 192.168.1.100 dev eth0
最后一行是自己添加的路由
说明:
route add:命令关键字,表示增加路由
-net:表示路由目标网段
netmask:表示路由目标为网段时才会使用到,表示路由目标网段的子网掩码
gw:命令关键字,后面跟下一条网关
dev:命令关键字,后面跟具体设备名,表示路由是从该设备出去的
改完以后是需要重启的 重启命令是shutdown -r now
使用route -n命令查看是否添加上路由条目
更多推荐
所有评论(0)