linux下添加路由的方法:

linux下添加路由的方法:
一:使用 route 命令添加
使用route 命令添加的路由,機器重啓或者網卡重啓後路由就失效了,方法:
//添加到主機的路由
# route add –host 192.168.118.110 dev eth0
# route add –host 192.168.118.119 gw 192.168.118.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.118.110 dev eth0
二:在linux下設置永久路由的方法:
1.在/etc/rc.local裏添加
方法:
route add -net 192.168.4.0/24 dev eth0
route add -net 192.168.5.0/24 gw 192.168.5.254

2.在/etc/sysconfig/network裏添加到末尾
方法:GATEWAY=gw-ip 或者 GATEWAY=gw-dev

3./etc/sysconfig/static-router :
any net a.a.a.a/24 gw b.b.b.b

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章