有恒ccs

导航

一键切换ip地址

@echo off
:start
echo ============请输入数字选择下一步操作:
echo ============1:内网
echo ============2:外网
echo ============3:设置为DHCP自动获取ip
set /P var=":"
if %var%==1 goto ip1
if %var%==2 goto ip2
if %var%==3 goto ip3
goto main
:ip1
echo IP自动设置开始...
echo.
echo 正在设置IP及子网掩码
cmd /c netsh interface ip set address name="以太网 2" source=static addr=15.9.15.121 mask=255.255.255.0 gateway=15.9.15.254 gwmetric=1
echo 正在设置DNS服务器
cmd /c netsh interface ip add dnsservers name="以太网 2" address=15.9.0.1 index=1
echo 设置完成
pause
exit
:ip2
echo IP自动设置开始...
echo.
echo 正在设置IP及子网掩码
cmd /c netsh interface ip set address name="以太网 2" source=static addr=10.160.20.88 mask=255.255.255.192 gateway=10.160.20.65 gwmetric=1
echo 正在设置DNS服务器
cmd /c netsh interface ip add dnsservers name="以太网 2" address=202.102.152.3 index=1
cmd /c netsh interface ip add dnsservers name="以太网 2" address=59.206.247.2 index=2
echo 设置完成
pause
exit
:ip3
echo IP自动设置开始....
echo.
echo 自动获取IP地址....
netsh interface ip set address name = "以太网 2" source = dhcp
echo 自动获取DNS服务器....
netsh interface ip set dns name = "以太网 2" source = dhcp
@rem 设置自动获取IP
echo 设置完成
pause
exit
:end

posted on 2021-10-25 11:28  有恒ccs  阅读(697)  评论(0编辑  收藏  举报