nmap扫描主机存活情况

原文链接: https://my.oschina.net/u/1771419/blog/3028091

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

nmap -sP -iL ip.txt -oG ip_output.txt

-sP (Ping扫描)

-iL(从列表中输入)

-oG (Grep输出)

 nmap -sP --min-hostgroup 1024 --min-parallelism 1024 -iL ip.txt -oG ip_output1113.txt

–min-hostgroup 1024(调整并行扫描组的大小,最小分组设置为1024)

–min-parallelism 1024(调整探测报文的并行度,最小并行度设置为1024)

转载于:https://my.oschina.net/u/1771419/blog/3028091

你可能感兴趣的:(nmap扫描主机存活情况)