办公与家庭同用一台笔记本的朋友们,可能会碰到一个问题,就是在多个局域网之间想要切换IP的时候比较麻烦,虽然现在IP切换工具很多,但有些使用起来并不是很尽如人意,因为自己平时在家与公司之间都要使用笔记本电脑,所以对此深有体会,今天就自己的经验向大家推荐下面的2个小脚本吧,保证马上让你药到病除。
1 切换成固定IP
@echo off
netsh interface ip set address local static 192.168.0.84 255.255.255.0 192.168.0.254
netsh interface ip set dns local 192.168.0.254
netsh interface ip add dns local 202.106.196.115 index=2
netsh interface ip add dns local 202.106.0.20 index=3
2切换成自动获取IP
@echo off
netsh interface ip set address name="local" source=dhcp
netsh interface ip set dns name="local" source=dhcp
"local"是你的本地网卡名称,也可能是"本地连接",需要自己替换下。如果是2个固定IP间的来回切换,把第2个脚本自己改改吧:)
dns设置中,第一个是set,表示设置,后面两个则是添加,自己替换成当地的dns server。
经常带着笔记本来回跑,需要频繁的切换 IP 地址,只要掌握了上面的两种小脚本方法,从此再也不用为切换IP地址而烦恼了!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)