Find Out Which Process Is Listening Upon a Port

netstat – a command-line tool that displays network connections, routing tables, and a number of network interface statistics.

$ sudo netstat -plnt

Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN  1158/mysqld
tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN 5390/redis-server 1
tcp 0 0 0.0.0.0:139 0.0.0.0:* LISTEN 699/smbd
tcp 0 0 0.0.0.0:9391 0.0.0.0:* LISTEN 4938/openvassd: Wai
tcp 0 0 192.168.122.1:53 0.0.0.0:* LISTEN 2218/dnsmasq
tcp 0 0 127.0.1.1:53 0.0.0.0:* LISTEN 1345/dnsmasq
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1029/sshd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 7420/cupsd
tcp 0 0 127.0.0.1:5943 0.0.0.0:* LISTEN 1320/teamviewerd
tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN 1271/postgres
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN 2140/master
tcp 0 0 0.0.0.0:445 0.0.0.0:* LISTEN 699/smbd
tcp6 0 0 :::139 :::* LISTEN 699/smbd
tcp6 0 0 :::9390 :::* LISTEN 4962/openvasmd
tcp6 0 0 :::9392 :::* LISTEN 5442/gsad
tcp6 0 0 :::80 :::* LISTEN 2367/apache2
tcp6 0 0 :::22 :::* LISTEN 1029/sshd
tcp6 0 0 ::1:631 :::* LISTEN 7420/cupsd
tcp6 0 0 :::25 :::* LISTEN 2140/master
tcp6 0 0 :::443 :::* LISTEN 5201/gsad
tcp6 0 0 :::445 :::* LISTEN 699/smbd

Leave a comment