(1)
@echooff
remeth//eth为网卡名称,可在网络连接中查询,如"本地链接"
seteth="本地连接"
remip//ip为你想更改的IP
setip=192.168.0.2
remgateway//gateway为网关地址
setgateway=192.168.0.1
remnetmasks//netmasks为子网掩码
setnetmasks=255.255.255.0
remdns//dns为首选DNS
setdns=219.146.0.130
remdns2//dns2为备用DNS
setdns2=219.150.32.132
echo正在将本机IP更改到:%ip%请等候...
rem
if%gateway%==nonenetshinterfaceipsetaddress%eth%static%ip%%netmasks%%gateway%>nul
ifnot%gateway%==nonenetshinterfaceipsetaddress%eth%static%ip%%netmasks%%gateway%1>nul
if%dns%==nonenetshinterfaceipsetdns%eth%static%dns%>nul
ifnot%dns%==nonenetshinterfaceipsetdns%eth%static%dns%>nul
if%dns2%==nonenetshinterfaceipadddns%eth%%dns2%>nul
ifnot%dns2%==nonenetshinterfaceipadddns%eth%%dns2%2>nul
echo.........................
echo检查当前本机IP:
ipconfig
echo.........................
echo成功将本机IP更改为%ip%!
pause
close
(2)
netshinterfaceipsetaddressname="本地连接"source=staticaddr=192.168.1.2mask=255.255.255.0gateway=192.168.1.11
netshinterfaceipsetdnsname="本地连接"source=staticaddr=219.146.0.130
netshinterfaceipsetdnsname="本地连接"source=staticaddr=213.150.32.132index=2
xp测试通过
netsh interface ip set address name="本地连接" source=static addr=192.168.1.2 mask=255.255.255.0 gateway=192.168.1.1 1
可以用等号的,要是不行的话,确定你的网络连接的名字为“本地连接”,要是还不行的话,请启动“远程注册表”服务再试试,
netsh interface ip set address name="本地连接" source=static
addr=192.168.0.101 mask=255.255.255.0 gateway=192.16.0.11
你的addr后面少了一个'='