Tuesday, December 14, 2021

NMAP - Network Mapper : Scanning entire Network

For scanning the entire network use the following command....
 
Inorder to perform the network scan....you have to know the IP address of the gateway...in my case the IP of the gateway is 192.168.1.1 which is the common gateway IP address that all the network would have by default unless if you have changed it to something else....

so having said a fore mentioned gateway IP, the command for scanning the entire network would be 

$ nmap 192.168.1.*

The result of the command execution would be explained by the image given below....


the above image has all the required information about each of the hosts available in the network.....


No comments:

Post a Comment

Installing Python and Creating Virtual Environment for Pip for package installations in Ubuntu

Hi, In this post we are going to look at how to install Python and PIP and installing packages in virtual environments.. Without wasting...