nmap

How to Run an Nmap Ping Scan or Sweep

nmap is a great application that has many uses & features. While better know for port scanning & host identification, it can also perform host discovery by running a simple ping scan on a network. A ping scan can be ran on an individual hostname, IP, or IP range. To run a ping sweep or scan, run the following command:

nmap -sn [10.0.0.0/24 | 10.0.0.1-254 | 10.0.0.44]

For example:

nmap -sn 10.0.0.0/24

How to Run an Nmap Ping Scan or Sweep

As you can see, you are returned a list of hosts on the network that responded to ping requests.

nmap - Operating System Detection Scan - How to Run

Nmap has many great features and options. One of the most popular uses is for Operating System detection, also know as OS detection. To run an OS detection scan on a hostname or IP, run the following command:

nmap -O -v scanme.nmap.org

nmap - Operating System Detection Scan - How to Run

-O: Enable OS detection

-v: Increase verbosity level (use -vv or more for greater effect)

For more information & details, see nmap's page on the same subject:

http://nmap.org/book/man-os-detection.html

Nmap - Service & Application Version Detection Command How To

Nmap has many great features and options. One of the most popular uses is for service & application version detection. To run a service and application version scan on a hostname or IP, run the following command:

nmap -sV -T4 -F scanme.nmap.org

Nmap - Service & Application Version Detection Command How To

-sV: Probe open ports to determine service/version info

-T<0-5>: Set timing template (higher is faster)

-F: Fast mode - Scan fewer ports than the default scan

For more information & details, see nmap's page on the same subject:

http://nmap.org/book/vscan.html

Subscribe to nmap