Open In App

Host Discovery in Nmap Network Scanning

Nmap becomes the primary tool for scanning the network, while other scanner tools still compete with Nmap. Many hosts in the organization are filtered by the firewall which is not detectable in the network.  But this can be possible using host discovery using Nmap. Host discovery in Nmap is the process of gathering information about the host in the respective network. Host discovery is also known as ping scan. Nmap uses options like ping or built-in script to look after ports, services, and running servers on respective IPs using TCP and UDP. This may lead to further enumeration.

The function of Host discovery in Nmap:

nmap -sL www.geeksforgeeks.com



 

nmap -sP www.geeksforgeeks.com

 

nmap -sn www.geeksforgeeks.com –disable-arp-ping 



 

nmap -PS www.geeksforgeeks.com 

 

nmap -sA www.geeksforgeeks.com

 

nmap -PE www.geeksforgeeks.com

 

nmap  -sU www.geeksforgeeks.com

 

nmap -v -PO www.geeksforgeeks.com

 

nmap -PR www.geeksforgeeks.com

 

nmap -sn –traceroute www.geeksforgeeks.com

 

Article Tags :