背景:工作上经常涉及到要调试设备,每次都要手动配置静态ip地址,配置完之后还要重新改回来,有时候为了连续调试多台设备,来回手动更改ip,实在麻烦。
思考:想到windows有脚本,可以利用脚本文件达到需求。
解决办法:
配置静态ip:
1 @echo off
2 netsh interface ip set address "本地连接" static 172.24.83.239 255.255.255.0 172.24.83.247
3 netsh interface ip set dns "本地连接" 172.24.102.110
4 netsh interface ip add dns "本地连接" 172.24.102.110 index=2
5 pause
配置动态ip:
1 @echo off
2 netsh interface ip set address name="本地连接" source=dhcp
3 netsh interface ip set dns name="本地连接" source=dhcp
4 pause
这样,只要双击之后就可以实现需,且节约很多时间。
实例:
动态IP脚本:
参考上面的代码即可。
例1:AC.bat
1 @echo off
2 netsh interface ip set address "本地连接" static 10.252.252.1 255.255.255.0
3 :sangfor-AC-IP: 10.252.252.252
4 pause
例2:AF.bat
1 @echo off
2 netsh interface ip set address name="本地连接" static 10.251.251.1 255.255.255.0
3 :sangfor_AF-IP:10.251.251.251
4 pause
说明:":"冒号表示注释。