#目标说明(TARGET SPECIFICATION) ##扫描一个IP
nmap 192.168.70.125
##扫描一个域名
nmap www.baidu.com
##扫描多个IP
nmap 192.168.70.125 192.168.70.127
##扫描一个网段
nmap 192.168.70.0/24 > nmap_result.txt 2>&1
##扫描多个网段
nmap 192.168.69-71.20-30 > nmap_result.txt 2>&1
##配置文件扫描多个IP nmap_target.txt内容:
nmap -iL nmap_target.txt
##随机扫描多个IP
nmap -iR 100
##扫描一个网段剔除一个IP
nmap 192.168.70.0/24 -exclude 192.168.70.101 > nmap_result.txt 2>&1
##扫描一个网段剔除多个IP nmap_excludefile.txt的内容:
nmap 192.168.70.0/24 -excludefile nmap_excludefile.txt > nmap_result.txt 2>&1