利用批處理設定和切換IP地址

majiwei_wh發表於2008-10-15

【步驟1】:首先將網路連線的設定為某個英文名稱,如CoderDream:

【步驟2】:ip_Out:設定成訪問外網的IP:

批處理指令碼ip_Out.bat:
@echo ip_vpn
netsh interface ip set address name="CoderDream" source=static addr=192.168.1.20 mask=255.255.255.0
netsh interface ip set address name="CoderDream" gateway=192.168.1.254 gwmetric=1
netsh interface ip set dns CoderDream static 192.168.1.254 
 

設定後具體的值:

IP地址:192.168.1.20

子網掩碼:255.255.255.0

預設閘道器:192.168.1.254

DNS伺服器:192.168.1.254

【步驟3】:ip_In:設定成訪問內網(自動獲取)的IP

批處理指令碼ip_Out.bat:
netsh interface ip set address name="CoderDream" dhcp
netsh interface ip set dns "CoderDream" dhcp
 

相關文章