您好,登錄后才能下訂單哦!
本篇文章為大家展示了route中怎么添加靜態(tài)路由,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
方法為:1、添加到主機的路由,“# route add –host 192.168.1.11 dev eth0”;2、添加到網(wǎng)絡的路由,“# route add –net 192.168.1.0/24 eth2”。
具體操作方法如下:
一、使用 route 命令添加
使用route 命令添加的路由,機器重啟或者網(wǎng)卡重啟后路由就失效了,方法:
//添加到主機的路由
# route add –host 192.168.1.11 dev eth0 # route add –host 192.168.1.12 gw 192.168.1.1
//添加到網(wǎng)絡的路由
# 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 eth2
//添加默認網(wǎng)關
# 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的方法是最好的。無論重啟系統(tǒng)和service network restart 都會生效。
static-routes文件又是什么呢,這個是network腳本執(zhí)行時調(diào)用的一個文件,這個文件的放置在/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
從這段腳本可以看到,這個就是添加靜態(tài)路由的方法,static-routes的寫法是
any net 192.168.0.0/16 gw 網(wǎng)關ip。
上述內(nèi)容就是route中怎么添加靜態(tài)路由,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。