Nicole,
Try the following command from a shell prompt:
netstat -atuvp | more
By default, netstat displays network connections. The five flags mean:
a -- show all sockets
t -- list TCP services
u -- list UDP services
v -- verbose
p -- display the name of the program using the port
'Hope this helps.
-- Bill