设置IP

附件,修改地址。
bat代码

@echo.
@echo -------------------------------------------
@echo.
@echo www.sos00.com
@echo.
@echo -------------------------------------------
@echo.
@echo.
@echo.
@echo off
netsh interface ip set address name="本地连接" source=static addr=192.168.0.12 mask=255.255.255.0 gateway=192.168.0.251 gwmetric=0
@echo.

@echo.
@echo -------------------------------------------
@echo.
@echo www.sos00.com
@echo.
@echo -------------------------------------------
@echo.
@echo.
@echo off
netsh interface ip set address name="本地连接" source=dhcp
@echo.
@pause

一键式:
@echo off
cls
color F0
@echo off
:au
cls
echo.
echo ===需要内外穿墙吗?===
echo.
echo 1:需要穿墙
echo.
echo 2:我要工作
echo.
echo.
choice /c 12 /n /m "请选择专【1或2】:"
if %errorlevel% equ 1 goto auto
if %errorlevel% equ 2 goto zt
echo 您没有选择修改方式。

:auto
netsh interface ip set address name="本地连接" source=dhcp
netsh interface ip set dns 本地连接 static 114.114.114.114 primary
netsh interface ip add dns 本地连接 8.8.8.8 index=2
netsh interface ip add dns 本地连接 8.8.4.4 index=3
goto au

:zt
netsh interface ip set address name="本地连接" source=static addr=192.168.0.12 mask=255.255.255.0 gateway=192.168.0.251 gwmetric=0
netsh interface ip set dns 本地连接 static 114.114.114.114 primary
netsh interface ip add dns 本地连接 8.8.8.8 index=2
netsh interface ip add dns 本地连接 8.8.4.4 index=3
goto end

:end

更新说明:解决部分WIN10 需要使用管理权限打开文件问题。
代码:

标签: bat

已有 4 条评论

  1. admin admin

    更新说明:解决部分WIN10 需要使用管理权限打开文件问题。
    代码:
    reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" /v "c:\windows\system32\cmd.exe" /d "RUNASADMIN" /f

  2. admin admin

    先设置外网IP和网关-设置内外网ip-cmd 输入route -p add 172.0.0.0 mask 255.0.0.0 192.168.0.1

  3. ROOT01 ROOT01

    route print

  4. 1121 1121

    route del++ete 192.168.10.0

添加新评论