PDA

View Full Version : is there a way to get IP of clients?


poseyj
12-04-2005, 23:32
i can't find a way in teamspeak web-admin, but i'd like to be able to get the IPs of those connected. i tried netstat in linux that did not work.

mrplastik
12-04-2005, 23:44
Right, you can't see them via netstat/sockstat/other tools which show listening sockets and established connections, because TS uses UDP for voice (as it should) meaning a total lack of established connections [See: RFC 768].

Now, that's not to say they're "invisible" - far from it. At any rate, I suspect the easiest solution would be to log all incoming connections and their respective IPs at the application [TeamSpeak] level.

<snip>

[log]
access_r=1
access_u=1

<snip>

However, this may not be exactly what you're looking for, since you wanted a list via the web interface.

Hope this helps some,
-m

poseyj
13-04-2005, 00:32
this is good. thanks for the help.