Windows下通過指令碼快速修改IP地址

wuweilong發表於2013-08-08

Windows下通過指令碼快速修改IP地址

如果通過Windows的網路屬性修改Ip/閘道器,真是太麻煩了。
經常要切換ip,所以我寫了兩個指令碼:
c:\辦公室.bat

netsh interface ip set address "乙太網" static 192.168.1.234 255.255.255.0 192.168.1.1 1

c:\家裡

netsh interface ip set address "乙太網" static 172.16.1.220 255.255.255.0 172.16.1.254 1

這樣就可以設定IP/Mask/GateWay了,netsh命令真方便!

新增多個DNS伺服器方法:

netsh interface ip add dns name = "乙太網" addr = 202.101.224.68
netsh interface ip add dns name = "乙太網" addr = 202.101.224.69
netsh interface ip add dns name = "乙太網" addr = 202.96.128.68
netsh interface ip add dns name = "乙太網" addr = 202.96.128.86

清空DNS伺服器的方法:

rem 清空DNS
netsh interface ip set dns name = "乙太網" static addr = none 

使用dhcp自動分配ip的快捷netsh命令:

netsh interface ip set address name="乙太網" source=dhcp

為一個網路連線設定二個或多個IP地址:

netsh interface ip set address name="乙太網" source=static addr=192.168.1.23 mask=255.255.255.0 gateway=192.168.1.1
netsh interface ip add address name="乙太網" addr=10.2.2.5 mask=255.255.255.0
netsh interface ip add address name="乙太網" addr=192.168.5.33 mask=255.255.255.0

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20674423/viewspace-768089/,如需轉載,請註明出處,否則將追究法律責任。

相關文章