在不同環境使用電腦經常要切換IP,利用netsh interface ip命令可以輕鬆切換IP和DNS:
netsh interface ip有以下命令:
add - 在一個表格中添加一個配置項。
delete - 從一個表格中刪除一個配置項。
dump - 顯示一個配置指令碼。
help - 顯示命令列表。
install - 安裝 IP 協議。
reset - 重設 IP 配置。
set - 設定配置資訊。
show - 顯示資訊。
uninstall - 卸載 IP 協議。
netsh interface IP set有以下的命令:
set address - 設定通向介面的 IP 位址或預設閘道。
set compartment - 修改分段配置參數。
set dnsservers - 設定 DNS 伺服器模式和地址。
set dynamicportrange - 修更改態連接埠分配所使用連接埠的範圍。
set global - 修改全域配置常規參數。
set interface - 修改 IP 的介面配置參數。
set neighbors - 設定鄰居地址。
set route - 修改路由參數。
set subinterface - 修改子介面配置參數。
set winsservers - 設定 WINS 伺服器模式和地址。
簡單樣本1:設定固定IP,儲存為bat檔案
@echo off
@rem 設定IP為192.168.0.1,子網路遮罩為255.255.255.0,預設閘道為192.168.0.254
netsh interface ip set address local static 192.168.0.1 255.255.255.0 192.168.0.254
@rem 設定首選的DNS伺服器192.168.0.254
netsh interface ip set dns local 192.168.0.254
@rem 添加DNS伺服器202.106.196.115
netsh interface ip add dns local 202.106.196.115 index=2
樣本2:自動擷取
@echo off netsh interface ip set address name="local" source=dhcp netsh interface ip set dns name="local" source=dhcp