系统:win2003 sp2
需求:为内网网卡(lan)添加10.10.0.2---10.10.0.55共计54个ip
掩码23
@echo off
for /l %%i in (2,1,55) do netsh interface ip add address name="lan" addr=10.10.0.%%i mask=255.255.254.0
pause
本文共 225 字,大约阅读时间需要 1 分钟。
系统:win2003 sp2
需求:为内网网卡(lan)添加10.10.0.2---10.10.0.55共计54个ip
掩码23
@echo off
for /l %%i in (2,1,55) do netsh interface ip add address name="lan" addr=10.10.0.%%i mask=255.255.254.0
pause
转载于:https://blog.51cto.com/410477/827842