LINUX路由配置

linux下添加路由的方法:

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

# route add �Chost 192.168.2.1 dev eth0
# route add �Chost 192.168.2.1 gw 192.168.168.1
//添加到网络的路由
# route add �Cnet 192.168.2.0 netmask 255.255.255.0 eth0
# route add �Cnet 192.168.2.0 netmask 255.255.255.0 gw 192.168.1.1
# route add �Cnet 192.168.2./24 eth1
# route add default gw 192.168.1.1 //添加默认网关
# route del �Chost 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=IP 或者 GATEWAY=gw-dev
3./etc/sysconfig/static-router 
any net x.x.x.x/24 gw y.y.y.y 


你可能感兴趣的:(linux,route)