man nmap
Nmap ("Network Mapper") is an open source tool for network exploration and security auditing.
SYNOPSIS:
nmap [Scan Type...] [Options] {target specification}
example:
nmap -sT -T4 -n -p1-65535 192.168.1.3 # Need root authority
-sT: 扫描 tcp 端口,扫描 udp 端口为:-sU
-T4: 时间设置,后面的数字越大,扫描速度越快。
-n:不将 IP 地址解析为域名。
-p1-65535:指定的端口扫描范围为:1-65535
192.168.1.3:要扫描的主机。
参考文档:
阅读(735) | 评论(0) | 转发(0) |