Oh, yeah, netstat by default only lists Unix-domain sockets.

You actually need netstat -a -t -u -p

-t and -u include TCP and UDP ports
-a includes listening ports (otherwise it just lists connected ports)
-p shows the pid/command line of the program on that port.
_________________________
-- roger