方法為:1、新增至主機的路由,「# route add –host 192.168.1.11 dev eth0」;2、新增至網路的路由,「# route add –net 192.168.1.0/24 eth1 」。
本教學操作環境:centos7系統、thinkpad t480電腦。
特定操作方法如下:
一、使用route 指令新增
使用route 指令新增的路由,機器重新啟動或網路卡重新啟動後路由就失效了,方法:
//新增至主機的路由
# route add –host 192.168.1.11 dev eth0 # route add –host 192.168.1.12 gw 192.168.1.1
//新增至網路的路由
# route add –net 192.168.1.11 netmask 255.255.255.0 eth0 # route add –net 192.168.1.11 netmask 255.255.255.0 gw 192.168.1.1 # route add –net 192.168.1.0/24 eth1
//新增預設閘道
# route add default gw 192.168.2.1
//移除路由
# route del –host 192.168.1.11 dev eth0
二:在linux下設定永久路由的方法:
./etc/sysconfig/static-routes : any net 192.168.3.0/24 gw 192.168.3.254 any net 10.250.228.128 netmask 255.255.255.192 gw 10.250.228.129
使用static-routes的方法是最好的。無論重啟系統和service network restart 都會生效。
static-routes文件又是什麼呢,這個是network腳本執行時調用的一個文件,這個文件的放置在/etc/sysconfig目錄下,在network腳本中的位置是:
# Add non interface-specific static-routes. if [ -f /etc/sysconfig/static-routes ]; then grep "^any" /etc/sysconfig/static-routes | while read ignore args ; do /sbin/route add -$args done fi
從這段腳本可以看到,這就是加入靜態路由的方法,static-routes的寫法是
any net 192.168.0.0/16 gw 网关ip。
(推薦學習:linux教學)
以上是route add如何新增靜態路由的詳細內容。更多資訊請關注PHP中文網其他相關文章!