Linux中增加軟路由的兩個(gè)方法
Linux中增加軟路由的方法一:
route add -net 172.16.6.0 netmask 255.255.255.0 gw 172.16.2.254 dev eth0/*
增加一條網(wǎng)絡(luò)172.16.6.0/24 經(jīng)過172.16.2.254 eth0 *//* -net增加網(wǎng)絡(luò) -host增加主機(jī)、netmask 子網(wǎng)掩碼、gw 網(wǎng)關(guān)、dev 裝置,設(shè)備,這里是你的網(wǎng)卡名*/route del gw 172.16.2.254 /* 刪除默認(rèn)網(wǎng)關(guān)172.16.2.254 */route del -net 172.16.86.0/24 /* 刪除默認(rèn)網(wǎng)絡(luò)172.16.86.0 */route /* 顯示當(dāng)前路由表 */常用的是這種方式,但有時(shí)你在刪除或一條軟路由時(shí)會(huì)不起作用,會(huì)有什么提示:SIOCADDRT: 無法接觸網(wǎng)路,所以這時(shí)用如下的這種方法就可以了。
Linux中增加軟路由的方法二:
實(shí)現(xiàn)的功能和上面的一樣
ip route add 172.16.6.0/24 via 172.16.2.254 dev eth0 ip route del gw 172.16.2.254 ip route del 172.16.6.0/24 dev eth0ip route
刪除的方法:添加路由:
以下是代碼片段:
route add -net 10.0.0.0 netmask 255.0.0.0 dev eth0
刪除路由:
以下是代碼片段:
route del -net 10.0.0.0 netmask 255.0.0.0 dev eth0
添加默認(rèn)路由:
以下是代碼片段
route add default gw 10.0.0.1
刪除默認(rèn)路由:
以下是代碼片段:
route del default gw 10.0.0.1
或者
以下是代碼片段:
route del default
linux下添加路由的方法:
使用 route 命令添加
使用route 命令添加的路由,機(jī)器重啟或者網(wǎng)卡重啟后路由就失效了,方法:
以下是代碼片段:
//添加到主機(jī)的路由
# route add –host 192.168.168.110 dev eth0
# route add –host 192.168.168.119 gw 192.168.168.1
//添加到網(wǎng)絡(luò)的路由
# route add –net IP netmask MASK eth0
# route add –net IP netmask MASK gw IP
# route add –net IP/24 eth1
//添加默認(rèn)網(wǎng)關(guān)
# route add default gw IP
//刪除路由
# route del –host 192.168.168.110 dev eth0
在linux下設(shè)置永久路由的方法:
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
Linux中增加軟路由的方法大家應(yīng)該能夠掌握和理解了,我們還會(huì)繼續(xù)整理相關(guān)內(nèi)容供大家參考的。
關(guān)鍵詞:Linux,軟路由
閱讀本文后您有什么感想? 已有 人給出評(píng)價(jià)!
- 0
- 0
- 0
- 0
- 0
- 0