发布网友 发布时间:2022-04-23 19:51
共1个回答
热心网友 时间:2023-09-30 01:38
话说我做过这个。。。
你自己看着改ip
我们班都用我这个
@echo off
set eth="本地连接"
set /p aaa= 校园网请按A,电信网请按B:
if %aaa%==a goto a
if %aaa%==b goto b
:a
set ip=222.20.18.239
set gw=222.20.18.254
set netmasks=255.255.255.0
set dns1=202.114.0.242
set dns2=202.112.20.131
echo 正在将本机IP更改到:%ip%
netsh interface ipv4 set address "%eth%" static %ip% %netmasks% %gw% gwmetric=0 >nul
echo 正在添加本机主DNS:%dns1%
netsh interface ipv4 set dns %eth% static %dns1% register=PRIMARY >nul
echo 正在添加本机副DNS:%dns2%
netsh interface ipv4 add dns "%eth%" %dns2% index=2 >nul
goto c
:b
echo 正在进行动态IP设置,请稍等...
netsh interface ipv4 set address "%eth%" source=dhcp
echo 正在进行动态DNS设置,请稍等...
netsh interface ipv4 set dns "%eth%" source=dhcp
:c
echo ---------------------------------
echo IP更改完毕
echo ---------------------------------
pause
close