hello888 发表于 2011-12-13 12:56

用什么软件可以切换IP,上班要手动指定IP,在家又要自动获得

如题。大家有没有工具。上网找了不少,XP下能用,win7下没成功过。
用网上搜的脚本,基本上没有成功过。
有工具的兄弟们共享一下,一定要win7下好用,最好兼容32位与64位。谢谢!

karonhu 发表于 2011-12-13 13:12

IpConvert

lxq8432 发表于 2011-12-13 13:12

把家里的设置成和单位的一样不行么?

我就是这样设置的。【有线网卡】



也可以一个用有线,一个用无线,指定不同的ip或自动获取

gerenuk 发表于 2011-12-13 13:16

用脚本 。。win7 用管理员用户执行

Zerolone 发表于 2011-12-13 14:27

ThinkVantage Access Connections

superbillgates 发表于 2011-12-13 16:10

很显然AC啊~~~

czbtw 发表于 2011-12-13 21:44

我没找到在win7下好用的,等楼下...

joggio 发表于 2011-12-14 11:53

netsetman

我在XP和win7 32下都用的很好,win7 64位没试过。。

海南小黑 发表于 2011-12-14 13:10

Posted by Zerolone on 2011-12-13 14:27 http://www.ibmnb.com/images/common/back.gif
ThinkVantage Access Connections

想当然了吧,,其实楼主用的不是Thinkpad,,用的是沉船电脑装Linux呢:D

潇逸飞 发表于 2011-12-14 13:47

自己写个BAT就行了,很容易的,不会自己在网上搜一下

fanghejun 发表于 2011-12-14 15:54

办公室插网线,家里无线。
没考虑改IP

yfy 发表于 2011-12-14 21:03

Posted by Zerolone on 2011-12-13 14:27 http://www.ibmnb.com/images/common/back.gif
ThinkVantage Access Connections
+1为什么到5楼才出现这个答案。在网络不够发达的年代ibm就给你考虑了。:D

Ingu 发表于 2011-12-15 16:41

如果只是在静态和DHCP之间切换的话可以在本地连接的IP协议中,设置自动获取,然后在高级里再添加一个静态地址。

luck108 发表于 2011-12-16 06:27

每次都要麻烦?

wslpc 发表于 2011-12-23 22:41

常规:自动获取
专用:用户配置(连接时间比平时稍长)

brqtpt007 发表于 2011-12-24 16:00

给你一个我在用的批处理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 ]

chenyong2718 发表于 2011-12-24 17:45

:) :)
页: [1]
查看完整版本: 用什么软件可以切换IP,上班要手动指定IP,在家又要自动获得