Find Open Ports

What UNIX command do you use to find out the open ports in a system?

Questions by ayongying

Showing Answers 1 - 9 of 9 Answers

gwgreen1

  • Jun 14th, 2010
 

nmap command is Network mapper and port scanner.  This command scans a server to locate open ports and the serviecs associated with those ports. It can also report information about packets filters and firewalls.

  Was this answer useful?  Yes

Sunnyman

  • Jun 28th, 2010
 

To determine which ports are open in Unix AIX v 6+, follow these steps:
1. Identify the services by using the netstat command as follows:
# netstat -af inet
The following is an example of this command output. 
The last column of the netstat command output indicates the state of each service. 
Services that are waiting for incoming connections are in the LISTEN state.
  
2. Open the /etc/services file and check the Internet Assigned Numbers Authority (IANA) services to map the service to 
port numbers within the operating system.

3. Close the unnecessary ports by removing the running services.
So no one command will do it. It is a combimation of 
# netstat -af ine
/etc/services, and 
some manual checks to see what ports are open 

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions