linux下新增新的路由

2021-06-19 06:50:39 字數 1510 閱讀 7151

linux下靜態路由修改命令

方法一:

新增路由

route add -net 192.168.0.0/24 gw 192.168.0.1

route add -host 192.168.1.1 dev 192.168.0.1

刪除路由

route del -net 192.168.0.0/24 gw 192.168.0.1

add 增加路由

del 刪除路由

-net 設定到某個網段的路由

-host 設定到某台主機的路由

gw 出口閘道器 ip位址

dev 出口閘道器 物理裝置名

增 加預設路由

route add default gw 192.168.0.1

預設路由一條就夠了

route -n 檢視路由表

方法二:

新增路由

ip route add 192.168.0.0/24 via 192.168.0.1

ip route add 192.168.1.1 dev 192.168.0.1

刪除路由

ip route del 192.168.0.0/24 via 192.168.0.1

add 增加路由

del 刪除路由

via 閘道器出口 ip位址

dev 閘道器出口 物理裝置名

增加預設路由

ip route add default via 192.168.0.1 dev eth0

via 192.168.0.1 是我的預設路由器

檢視路由資訊

ip route

儲存路由設定,使其在網路重啟後任然有效

在/etc/sysconfig/network-script/目錄下建立名為route- eth0的檔案

vi /etc/sysconfig/network-script/route-eth0

在此檔案新增如下格式的內容

192.168.1.0/24 via 192.168.0.1

重啟網路驗證

/etc/rc.d/init.d/network中有這麼幾行:

# add non inte***ce-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 也就是說,將靜態路由加到/etc/sysconfig/static-routes 檔案中就行了。

如加入:

route add -net 11.1.1.0 netmask 255.255.255.0 gw 11.1.1.1

則static-routes的格式為

any net 11.1.1.0 netmask 255.255.255.0 gw 11.1.1.1

linux下新增路由的方法

2.在 etc sysconfig network裡新增到末尾 方法 gateway gw ip 或者 gateway gw dev 3.etc sysconfig static routes 沒有static routes的話就手動建立乙個這樣的檔案 any net 192.168.3.0 24 ...

Linux下如何新增路由

最近的事情比較多,面對客戶的一大堆問題需要解決,其中最急的就是客戶要求他們的裝置能從我們的伺服器上把影象拉下來,在從裝置傳到印表機可以列印出來,這個要求是正常的需求,我來到mri那裡的時候,發現居然那台後處理高階工作站居然不能和伺服器的網段連通,物理上都是隔絕的,我倒。裝置不是自家的,我可不敢亂動啊...

linux下如何新增路由

一 使用 route 命令新增 臨時路由 使用route 命令新增的路由,機器重啟或者網絡卡重啟後路由就失效了,方法 新增到主機的路由 route add host 192.168.168.110 dev eth0 route add host 192.168.168.119 gw 192.168....