用什么软件可以切换IP,上班要手动指定IP,在家又要自动获得
如题。大家有没有工具。上网找了不少,XP下能用,win7下没成功过。用网上搜的脚本,基本上没有成功过。
有工具的兄弟们共享一下,一定要win7下好用,最好兼容32位与64位。谢谢! IpConvert 把家里的设置成和单位的一样不行么?
我就是这样设置的。【有线网卡】
也可以一个用有线,一个用无线,指定不同的ip或自动获取 用脚本 。。win7 用管理员用户执行 ThinkVantage Access Connections 很显然AC啊~~~ 我没找到在win7下好用的,等楼下... netsetman
我在XP和win7 32下都用的很好,win7 64位没试过。。 Posted by Zerolone on 2011-12-13 14:27 http://www.ibmnb.com/images/common/back.gif
ThinkVantage Access Connections
想当然了吧,,其实楼主用的不是Thinkpad,,用的是沉船电脑装Linux呢:D 自己写个BAT就行了,很容易的,不会自己在网上搜一下 办公室插网线,家里无线。
没考虑改IP Posted by Zerolone on 2011-12-13 14:27 http://www.ibmnb.com/images/common/back.gif
ThinkVantage Access Connections
+1为什么到5楼才出现这个答案。在网络不够发达的年代ibm就给你考虑了。:D 如果只是在静态和DHCP之间切换的话可以在本地连接的IP协议中,设置自动获取,然后在高级里再添加一个静态地址。 每次都要麻烦? 常规:自动获取
专用:用户配置(连接时间比平时稍长) 给你一个我在用的批处理win764位
@echo off
mode con cols=80 lines=10&color 0d
title IP 切换设置
:st
cls
echo.
echo 1.(l_dhcp) 2.(w_dhcp) 3.(gz_w.4) 4.(gz_l.4) 5.(nc_l.4) 6.(gz_l.0) 7.(nc_l.0)
echo.
set /p ip=请输入:
echo.
if %ip%==1 goto zd
if %ip%==2 goto zd1
if %ip%==3 goto sd
if %ip%==4 goto sd1
if %ip%==5 goto sd2
if %ip%==6 goto sd3
if %ip%==7 goto sd4
echo|set /p a=输入错误,请重新输入...&pause>nul&&goto st
:zd
netsh interface ip set address name=本地连接 source=dhcp
netsh interface ip set dns name=本地连接 source=dhcp
echo 设置完毕...
ping -n 2 127.1>nul
exit
:zd1
netsh interface ip set address name=无线网络连接 source=dhcp
netsh interface ip set dns name=无线网络连接 source=dhcp
echo 设置完毕...
ping -n 2 127.1>nul
exit
:sd
netsh interface ip set address "无线网络连接" static 192.168.0.116 255.255.255.0 192.168.0.114
netsh interface ip set DNS "无线网络连接" static 202.101.224.69
netsh interface ip add DNS "无线网络连接" 202.101.226.68 index=2
if exist %SystemRoot%\setupapi.log del /q %SystemRoot%\setupapi.log
echo 设置完毕...
exit
:sd1
netsh interface ip set address "本地连接" static 192.168.0.6 255.255.255.0 192.168.0.114
netsh interface ip set DNS "本地连接" static 202.101.224.69
netsh interface ip add DNS "本地连接" 202.101.226.68 index=2
if exist %SystemRoot%\setupapi.log del /q %SystemRoot%\setupapi.log
echo 设置完毕...
exit
:sd2
netsh interface ip set address "本地连接" static 192.168.1.6 255.255.255.0 192.168.1.114
netsh interface ip set DNS "本地连接" static 202.101.224.69
netsh interface ip add DNS "本地连接" 202.101.226.68 index=2
if exist %SystemRoot%\setupapi.log del /q %SystemRoot%\setupapi.log
echo 设置完毕...
exit
:sd3
netsh interface ip set address "本地连接" static 192.168.0.6 255.255.255.0 192.168.0.110
netsh interface ip set DNS "本地连接" static 202.101.224.69
netsh interface ip add DNS "本地连接" 202.101.226.68 index=2
if exist %SystemRoot%\setupapi.log del /q %SystemRoot%\setupapi.log
echo 设置完毕...
exit
:sd4
netsh interface ip set address "本地连接" static 192.168.1.6 255.255.255.0 192.168.1.110
netsh interface ip set DNS "本地连接" static 202.101.224.69
netsh interface ip add DNS "本地连接" 202.101.226.68 index=2
if exist %SystemRoot%\setupapi.log del /q %SystemRoot%\setupapi.log
echo 设置完毕...
exit
:err
echo.
echo 手动设置失败
echo|set /p a=请检查一下IP输写是否正确...
pause>nul
goto st
[ Edited bybrqtpt007 on 2011-12-24 16:02 ] :) :)
页:
[1]