]> git.proxmox.com Git - pmg-docs.git/blame - nmap.adoc
installation: fix codeblock rendering in zfs performance tips section
[pmg-docs.git] / nmap.adoc
CommitLineData
abca4c1d
DM
1[[nmap]]
2`nmap` - Port Scans
3-------------------
4
5`nmap` is designed to allow system administrators to scan large
f11e91b5
DW
6networks, to determine which hosts are up and what services they
7offer. You can use nmap to test your firewall settings, for example,
abca4c1d
DM
8to see if the required ports are open.
9
10.Test Razor port (tcp port 2703):
11----
258795e2 12# nmap -Pn -sS -p 2703 c301.cloudmark.com
e5fa9b13
TL
13Starting Nmap 7.70 ( https://nmap.org ) at 2020-04-14 12:20 CEST
14Nmap scan report for c301.cloudmark.com (208.83.137.114)
15Host is up (0.13s latency).
abca4c1d 16
abca4c1d 17PORT STATE SERVICE
e5fa9b13 182703/tcp open sms-chat
abca4c1d 19
e5fa9b13 20Nmap done: 1 IP address (1 host up) scanned in 6.83 seconds
abca4c1d
DM
21----
22
0a739dae
OB
23For more information about `nmap` usage, see the
24https://nmap.org/book/man.html[Nmap Reference Guide], also available as a manual
25page (`man nmap`).