批处理脚本来 ping 指定的 IP 地址?

发布于 2024-10-15 20:29:24 字数 109 浏览 1 评论 0原文

我想在Windows下编写一个批处理脚本来ping指定范围的IP地址。就像我想 ping 192.168.0.1 到 192.168.0.10 并想检查他们的响应是否在 Windows 批处理脚本下到来。

I want to write a batch script under Windows to ping a specified range of IP addresses. Like I want to ping 192.168.0.1 to 192.168.0.10 and want to check if their response is coming or not under Windows batch script.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别忘他 2024-10-22 20:29:24
@echo off
for /L %%i in (1,1,10) do (
@echo testing 192.168.0.%%i 
ping 192.168.1.%%i > nul
if ERRORLEVEL 1 @echo error ping %%i )
@echo off
for /L %%i in (1,1,10) do (
@echo testing 192.168.0.%%i 
ping 192.168.1.%%i > nul
if ERRORLEVEL 1 @echo error ping %%i )
不再让梦枯萎 2024-10-22 20:29:24

那么,for 循环将如下所示:

for /l %i in (1,1,10) do ping 192.168.0.%i

因此脚本将类似于:

for /l %i in (1,1,10) do (
    ping 192.168.0.%i
    if %errorlevel% neq 0 echo error
)

Well, the for loop would look like this:

for /l %i in (1,1,10) do ping 192.168.0.%i

So the script would be something like:

for /l %i in (1,1,10) do (
    ping 192.168.0.%i
    if %errorlevel% neq 0 echo error
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文