Script to change gateway by command

xiaoxiao2021-03-01  85

@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 相关资源:敏捷开发V1.0.pptx
转载请注明原文地址: https://www.6miu.com/read-4200319.html

最新回复(0)