DOS 修改IP地址,不同局域网切换IP更方便
使用笔记本电脑经常会遇到,因笔记本使用网络环境的不同,需更换IP地址设置,非常麻烦。其实可以用DOS命令更改本地连接的IP地址,编写好对应网络的更改批处理文件,需要时直接执行就可以了。最常用的有两种情况:自动分配ip和指定ip。
设置成自动获取IP的脚本:
netsh interface ip set address “本地连接” dhcp
netsh interface ip delete dns “本地连接” all
指定ip的脚本:
netsh interface ip set address “本地连接” static 10.7.211.60 255.255.255.0 10.7.211.254 1
netsh interface ip set dns “本地连接” source=static 10.1.1.105 register=PRIMARY
经常用的可以在桌面新建两个.bat文件,分别写入上面的内容,双击就可以切换ip啦。
“本地连接”为name网络连接名,10.7.211.60为addr待设定IP地址,255.255.255.0为mask子网掩码,10.7.211.254为gateway网关,1为gwmetric默认网关的跃点数。
欢迎转载,请注明出处:亲亲宝宝