Script to change gateway by command

@echo off
rem eth //eth 为网卡名称,可在网络连接中查询,如"本地连接"
set eth="本地连接"
rem ip //ip 为你想更改的IP
set ip=10.0.125.38
rem gw //gw 为网关地址
set gw=10.0.125.2
rem netmasks //netmasks 为子网掩码
set netmasks=255.255.255.0
rem 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 dns "本地连接" static 10.0.125.2
netsh interface ip add dns "本地连接" 210.22.84.3
echo.........................
echo 检查当前本机IP:
ipconfig
echo.........................
echo 成功将本机IP更改为%ip%!
pause
close

发布了257 篇原创文章 · 获赞 6 · 访问量 31万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章