1. 程式人生 > >windows下設定ip的指令碼

windows下設定ip的指令碼

把如下程式碼存為.bat檔案,放在系統path中,直接執行即可設定不同ip
1.設定固定ip

@echo ip_sisans
netsh interface ip set address local source=static addr=10.1.38.17 mask=255.255.255.0
netsh interface ip set address name=local gateway=10.1.38.1 gwmetric=1
netsh interface ip set dns local static 10.1.37.1
netsh interface ip add dns local 10.1.135.135


2.設定自動分配ip

netsh int ip set address name="local" source=dhcp
netsh interface ip set dns local dhcp


這裡name="local"是指網路連線中檢視到的本地連線的名稱