How to manually run Nmap utility

1 users found this article helpful

Information

  1. Go to the server with Parallels Mac Management Proxy installed and open Command Prompt
  2. Navigate to Nmap directory:

    cd C:\Program Files (x86)\Nmap
    
  3. Run the Nmap manually with below command, specifying subnets to scan (for example nmap.exe 10.10.10.0/24 11.11.11.0/24):

    nmap.exe %subnet/24% %subnet/24% %subnet/24% -T5 -p 22,548,5900 -oN out.txt
    

    Sample command:

    nmap.exe 10.150.3.0/24 10.150.2.0/24 10.150.0.0/24 -T5 -p 22,548,5900 -oN out.txt
    

After Nmap is finished, out.txt file will be created in C:\Program Files (x86)\Nmap.

Was this article helpful?

Tell us how we can improve it.