praxantp Answered question October 23, 2024
Here is the procedure to scan a specific range of IP addresses using Nmap in Kali Linux:
- Open a terminal: Launch the terminal on your Kali Linux system.
- Run the Nmap command: Use the following syntax to specify a range of IP addressessudo nmap <start-ip>-<end-ip>
3. Replace <start-ip>
with the beginning of your IP range and <end-ip>
with the end of the range. For example:
sudo nmap 192.168.1.1-192.168.1.100
This command scans all the IP addresses from 192.168.1.1
to 192.168.1.100
.
praxantp Answered question October 23, 2024