windows下如何新增 刪除和修改靜態路由

2022-06-14 11:03:09 字數 569 閱讀 1873

route add 192.168.100.0 mask 255.255.255.248 192.168.1.1 metric 3 if 2
新增一條路由記錄,所有到192.168.100.0/24網段的資料報,都通過2號(網絡卡)介面走192.168.1.1的閘道器,優先順序為3。

route add -p 192.168.100.0 mask 255.255.255.248 192.168.1.1 metric 3 if 2

#作用同上,只是這是一條永久路由,不會因為重啟機器而丟失。

route delete 192.168.100.0
注意:如果有兩條路由記錄有著相同的「目的網路號」,則會將兩條記錄同時刪除。如果只想刪除其中某一條的話,請在刪除後用route add命令再新增上其中一條。

route change 157.0.0.0 mask 255.0.0.0 157.55.80.5 metric 2 if 2 change引數只能修改「閘道器」和「跳數」。

新增 刪除 windows下Git右鍵選單

不顯示右鍵選單 方法1 安裝的時候選擇不新增右鍵選單。方法2 絕對有效 執行cmd windows 64 輸入命令 位址為git安裝位址 cd c program files x86 git git cheetah regsvr32 u git shell ext64.dll windows 32 ...

新增 刪除 windows下Git右鍵選單

不顯示右鍵選單 方法1 安裝的時候選擇不新增右鍵選單。方法2 絕對有效 執行cmd windows 64 輸入命令 位址為git安裝位址 cd c program files x86 git git cheetah regsvr32 u git shell ext64.dll windows 32 ...

新增刪除Windows服務

建立服務 sc create bizservice binpath f bizwinserver.exe sc create bizservice binpath e bizwinserver.exe service r displayname bizservice start auto 刪除服務 ...