Linux中新增路由

2021-09-01 21:48:54 字數 604 閱讀 5865

[color=red]linux新增路由[/color]

在檔案/etc/init.d/network中可以看到如下部分內容

[img]

可見只要在/etc/sysconfig/static-routes中新增路由資訊即可(若該檔案不存在新建即可),新增資訊如下

any net 192.168.0.0 netmask 255.255.0.0 gw 192.168.30.129

然後重啟網路服務,即執行如下命令:

service network restart

最後檢視新增結果,命令是:

route

[color=red]windows新增路由[/color]

先配置ip位址及子網掩碼,勿配置閘道器,如下

[img]

然後新增路由命令

route add -p 192.168.0.0 mask 255.255.0.0 192.168.30.129 metric 256

最後檢視新增結果,命令是:

route print

[url=下route add route del 用法[/url]

[url=偷懶系列--小指令碼實現同時連線內外網[/url]

linux路由新增

linux下靜態路由修改命令 方法一 新增路由 route add net 192.168.0.0 24 gw 192.168.0.1 route add host 192.168.0.1 dev 192.168.0.1 刪除路由 route del net 192.168.0.0 24 gw 19...

Linux新增路由

在linux的vm中可以新增 刪除路由。中如圖的拓撲結構中需要在中間的vm上新增路由,使最左邊的vm和最右邊的vm實現互通。在這台vm上需要新增ip forwarding的功能,在作業系統中也需要開啟ip forwarding。在做完這些工作後,在vm上的路由 10.10.1.0 24是圖中右邊的網...

linux 新增靜態路由

分類 linux學習 2010 03 19 18 51 70087人閱讀 收藏 舉報 linux 路由器網路 linux下靜態路由修改命令 方法一 新增路由 route add net 192.168.0.0 24 gw 192.168.0.1 route add host 192.168.1.1 ...