View previous topic :: View next topic |
Author |
Message |
corey_s Apprentice
Joined: 29 Jun 2003 Posts: 264
|
Posted: Fri May 27, 2005 1:02 am Post subject: port 6000 udp broadcast traffic [SOLVED!] |
|
|
How do I figure out what service is providing a particular port to be opened?
For instance, here's something on 6000; found by doing a netstat -a | grep udp
udp 0 0 *:6000 *:*
Also, doing a tcpdump I can see:
06:06:38.729812 IP 192.168.x.x.42752 > 255.255.255.255.6000: UDP, length: 63
... I want to find exactly what process/service is utilizing/opening that port; and/or how to turn it off directly.
( I thought this was x11, but after stopping X, it's still being broadcast. )
Many thanks!
Last edited by corey_s on Fri May 27, 2005 3:08 am; edited 1 time in total |
|
Back to top |
|
|
S. Traaken Tux's lil' helper
Joined: 14 Nov 2003 Posts: 135
|
Posted: Fri May 27, 2005 2:56 am Post subject: |
|
|
As root :
Code: | emerge lsof
lsof -i |
Should do the trick. |
|
Back to top |
|
|
corey_s Apprentice
Joined: 29 Jun 2003 Posts: 264
|
Posted: Fri May 27, 2005 3:08 am Post subject: |
|
|
S. Traaken wrote: | As root :
Code: | emerge lsof
lsof -i |
Should do the trick. |
Perfect!
Many thanks! |
|
Back to top |
|
|
S. Traaken Tux's lil' helper
Joined: 14 Nov 2003 Posts: 135
|
Posted: Tue May 31, 2005 2:51 am Post subject: |
|
|
:D
So what was it? |
|
Back to top |
|
|
|