當前位置:首頁 » 操作系統 » 在linux添加路由

在linux添加路由

發布時間: 2022-06-20 18:41:09

linux怎麼添加靜態路由

linux下添加路由的方法:
一:使用 route 命令添加
使用route 命令添加的路由,機器重啟或者網卡重啟後路由就失效了,方法:
//添加到主機的路由
# route add –host 192.168.168.110 dev eth0
# route add –host 192.168.168.119 gw 192.168.168.1
//添加到網路的路由
# route add –net IP netmask MASK eth0
# route add –net IP netmask MASK gw IP
# route add –net IP/24 eth1
//添加默認網關
# route add default gw IP
//刪除路由
# route del –host 192.168.168.110 dev eth0

二:在linux下設置永久路由的方法:
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如何配置路由

linux下添加路由的方法:
一:使用 route 命令添加
使用route 命令添加的路由,機器重啟或者網卡重啟後路由就失效了,方法:
//添加到主機的路由
# route add –host 192.168.168.110 dev eth0
# route add –host 192.168.168.119 gw 192.168.168.1
//添加到網路的路由
# route add –net IP netmask MASK eth0
# route add –net IP netmask MASK gw IP
# route add –net IP/24 eth1
//添加默認網關
# route add default gw IP
//刪除路由
# route del –host 192.168.168.110 dev eth0

二:在linux下設置永久路由的方法:
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怎麼添加靜態路由

一:使用 route 命令添加 使用route 命令添加的路由,機器重啟或者網卡重啟後路由就失效了,方法: //添加到主機的路由 # route add –host 192.168.168.110 dev eth0 # route add –host 192.168.168.119 gw 192.168.168.1 //添加到網路的路由 # route add –net IP netmask MASK eth0 # route add –net IP netmask MASK gw IP # route add –net IP/24 eth1 //添加默認網關 # route add default gw IP//刪除路由# route del –host 192.168.168.110 dev eth0 二:在linux下設置永久路由的方法: 1.在/etc/rc.local里添加方法:route add -net 192.168.3.0/24 dev eth0

⑷ linux下添加路由列表

這個問題看似簡單,實際有點復雜。首先要根據你的網路狀況決定採用那種方式實現路由:
1。網路裡面有路由器,那麼在路由器上做路由就行了。
2。沒有路由器,但伺服器上有兩個網卡,那麼一個網卡封裝10的ip,一個網段封裝192的ip,然後加上路由指令即可。
3。伺服器只有一塊網卡,也能實現,可以用自埠方式給網卡封裝兩個ip,然後加上路由即可。

⑸ linux怎麼添加靜態路由

linux下添加路由的方法:
一:使用 route 命令添加使用route 命令添加的路由,機器重啟或者網卡重啟後路由就失效了。

# route del –host 192.168.168.110 dev eth0
二:在linux下設置永久路由的方法:
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怎麼添加靜態路由

平時工作經常需要配置路由,接下來總結一下linux伺服器配置路由的方法。

1、首先看一下本機的網路環境網路信息及路由信息:ip addr;route -n。

⑺ linux如何添加路由

⑻ linux里怎麼永久性添加路由

如果是添加網關的話,在
/etc/sysconfig/network文件中指定GATEWAY,
例如:
GATEWAY=192.168.0.254

如果要添加路由的話,
在/etc/rc.d/rc.local中添加一行(例子):
route add -net 192.168.0.0 netmask 255.255.255.0 gw 192.168.0.254 dev eth1

⑼ linux添加靜態路由

linux下添加路由的方法:
一:使用 route 命令添加
使用route 命令添加的路由,機器重啟或者網卡重啟後路由就失效了,方法:
//添加到主機的路由
# route add –host 192.168.168.110 dev eth0
# route add –host 192.168.168.119 gw 192.168.168.1
//添加到網路的路由
# route add –net IP netmask MASK eth0
# route add –net IP netmask MASK gw IP
# route add –net IP/24 eth1
//添加默認網關
# route add default gw IP
//刪除路由
# route del –host 192.168.168.110 dev eth0

二:在linux下設置永久路由的方法:
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 添加默認路由

1、首先,連接相應linux主機,進入到linux命令行狀態下,等待輸入shell指令。

熱點內容
xp代理伺服器如何設置 發布:2024-11-08 04:27:20 瀏覽:523
androidpdf轉圖片 發布:2024-11-08 04:08:55 瀏覽:658
強夯壓縮系數 發布:2024-11-08 04:05:35 瀏覽:80
伺服器io錯誤是什麼原因 發布:2024-11-08 04:03:50 瀏覽:13
解壓閑聊 發布:2024-11-08 04:00:08 瀏覽:806
微信安卓為什麼信息延遲 發布:2024-11-08 03:46:57 瀏覽:197
微信伺服器怎麼搭建 發布:2024-11-08 03:45:26 瀏覽:495
海濱消消樂有腳本嗎 發布:2024-11-08 03:44:01 瀏覽:240
標識標牌制圖需要什麼配置電腦 發布:2024-11-08 03:30:20 瀏覽:377
android仿網易 發布:2024-11-08 03:21:39 瀏覽:955