linux下新增路由的方法

season0891發表於2010-10-10
linux下新增路由的方法:  一:使用 route 命令新增  使用route 命令新增的路由,機器重啟或者網路卡重啟後路由就失效了,方法:  //新增到主機的路由  # route add –host 192.168.168.110 dev eth0 ...
  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

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/90618/viewspace-675674/,如需轉載,請註明出處,否則將追究法律責任。

相關文章