> For the complete documentation index, see [llms.txt](https://www.heresecurity.wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.heresecurity.wiki/heng-xiang-yi-dong/tan-ce-cun-huo-zhu-ji/for+ping-ming-ling-cha-xun-cun-huo-zhu-ji.md).

# For+Ping命令查询存活主机

```
>for /L %I in (1,1,254) DO @ping -w 1 -n 1 192.168.0.%I |findstr "TTL="
```

![image](https://raw.githubusercontent.com/xiaoy-sec/Pentest_Note/master/img/317.png)

```
For+Ping命令查询域名对应IP
>for /f "delims=" %i in (D:/domains.txt) do @ping -w 1 -n 1 %i | findstr /c:"[192." >> c:/windows/temp/ds.txt
```
