电脑ip地址怎么改
厌倦了因需要频繁更改笔记本 IP 设置而烦恼吗?以下代码可以解决你的问题。将代码粘贴到记事本中,根据需要进行更改和添加内容,然后另存为 .BAT 文件。常用地址一键设定,轻松方便。
@echo off
title--IP 自动设定--
MODE con:COLS=80 lines=30
color 0a
:main
cls
echo 执行操作:
echo.
echo 将 IP 地址设定为瑞康 PTN 远端 TELNET 地址,请输入 1
echo 将 IP 地址设定为华环 PTN 远端 TELNET 地址,请输入 2
echo 将 IP 地址设定为自动获取,请输入 3
echo 退出,请输入 4
echo.
set/p choice= 你的选择:
echo.
if "%choice%"=="1" goto ip1
if "%choice%"=="2" goto ip2
if "%choice%"=="3" goto ip3
if "%choice%"=="4" goto end
if "%choice%"=="5" goto test
goto main
:ip1
echo 开始 IP 自动设定....
echo.
echo 正设定 IP 和子网络遮罩
cmd /c netsh interface ip set address name="本地连接" source=static addr=192.168.4.100 mask=255.255.255.0 gateway=192.168.4.1 gwmetric=1
pause
exit
if errorlevel 2 goto main
if errorlevel 1 goto end
:ip2
echo 开始 IP 自动设定....
echo.
echo 正设定 IP 和子网络遮罩
cmd /c netsh interface ip set address name="本地连接" source=static addr=192.192.4.100 mask=255.255.255.0 gateway=192.192.4.1 gwmetric=1
pause
exit
if errorlevel 2 goto main
if errorlevel 1 goto end
:ip3
echo 开始 IP 自动设定....
echo.
echo 自动获取 IP 地址...
netsh interface ip set address name="本地连接" source=dhcp
echo 自动获取 DNS 服务器
netsh interface ip set dns name="本地连接" source=dhcp
echo 设定完成
pause
exit
if errorlevel 2 goto main
if errorlevel 1 goto end
:test
echo 開始 IP 自動設定....
echo.
echo 正設定 IP 和子網路遮罩
cmd /c netsh interface ip set address name="本地连接" source=static addr=10.0.233.195 mask=255.255.255.0 gateway=10.0.233.1 gwmetric=1
echo 正在設定 DNS 伺服器
cmd /c netsh interface ip set dns name="本地连接" source=static addr=211.137.191.26 register=PRIMARY validate=no
echo 設定完成
CHOICE /C YN /M "退出請按 Y,返回選單請按 N"
if errorlevel 2 goto main
if errorlevel 1 goto end
:end