溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

route中怎么添加靜態(tài)路由

發(fā)布時間:2021-06-30 14:15:50 來源:億速云 閱讀:2504 作者:Leah 欄目:建站服務器

本篇文章為大家展示了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è)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI