find out what is communicating on a particular port
lsof -i :8080
where 8080 is the port you want to know about
Labels: command line, incoming connections, listening, lsof, port, sysadmin, systems administration
lsof -i :8080
where 8080 is the port you want to know about
Labels: command line, incoming connections, listening, lsof, port, sysadmin, systems administration
for tcp: lsof | grep TCP
or for udp: lsof | grep UDP
Labels: command line, incoming connections, listening, port, services, sysadmin, systems administration