Windows 批处理 ping 某个网段
2021-07-12 18:14
标签:err ant variable get art int 代码 txt 查看命令 原文: https://blog.csdn.net/leuxcn/article/details/51288248 ---------------------------------------------------------------- 请输入IP地址段,格式如:”192.168.1.” >>> 192.168.1. Windows 批处理 ping 某个网段 标签:err ant variable get art int 代码 txt 查看命令 原文地址:https://www.cnblogs.com/oxspirt/p/9591749.html
@echo off
set /p ip="请输入IP地址段,格式如:"192.168.1." >>> "
for /L %%i in (1,1,254) do (
Ping.exe -n 1 -l 16 -w 100 %ip%%%i>>ipscan.txt
if not errorlevel 1 (echo %ip%%%i 可以ping通)
)
pause
192.168.1.100 可以ping通
192.168.1.101 可以ping通
192.168.1.102 可以ping通
192.168.1.103 可以ping通
192.168.1.104 可以ping通
192.168.1.123 可以ping通
192.168.1.144 可以ping通
192.168.1.146 可以ping通
192.168.1.149 可以ping通
192.168.1.150 可以ping通
请按任意键继续…
下一篇:windows和mtu值修改
文章标题:Windows 批处理 ping 某个网段
文章链接:http://soscw.com/index.php/essay/104278.html