求推荐一个可以快速切换网卡IP地址以及DNS的工具

想要找一个小工具,可以快速的修改切换,网卡的IP地址,以及DNS等信息,手动填写太慢了,有个工具可以保存配置信息,直接一键切换就很方便了,不知道大家有用过什么没有,推荐一下,谢谢!

IPWhiz

http://www.pc6.com/softview/SoftView_47653.html

QQ截图20200904002104

1 个赞

话说,这个功能在 linux 的 KDE 桌面里面是自带的,默认安装就有。

抄了一段脚本,可以运行。win下基本上命令行或者提前写个批处理比较简单快速,不再装个什么软件比较好。其实,这个脚本就当是个命令说明,实际上切换ip地址,两行命令就直接搞定了。注意:要有管理员权限。
@echo off
rem eth //eth 为网卡名称,可在网络连接中查询,如"本地链接"
set eth=“以太网 4”
rem ip //ip 为你想更改的IP
set ip=192.168.1.86
rem gw //gw 为网关地址
set gw=192.168.1.1
rem netmasks //netmasks 为子网掩码
set netmasks=255.255.255.0
rem dns //dns 为域名解析服务器
set dns=192.168.1.1

echo 正在将本机IP更改到: %ip%
rem
if %gw%==none netsh interface ip set address %eth% static %ip% %netmasks% %gw% > nul
if not %gw%==none netsh interface ip set address %eth% static %ip% %netmasks% %gw% 1 > nul
netsh interface ip set dnsservers %eth% static %dns%  primary >nul
echo.........................
echo 检查当前本机IP:
ipconfig
echo.........................
echo 成功将本机IP更改为%ip%!
pause
close

NetSetMan,这款软件用了好多年。

1 个赞

ipshifter