Hey everyone, I would like to know if its possible to see the IP's of other players on a multiplayer server. If i use ip.addr == (IP Server) in the filter then the only ip addresses it gives me are mine and the servers. Does the server keeps the IP's of its players and never send it to others? Sorry for my bad english. Greetings asked 20 Jun '15, 05:23 SuperVanquisher |
One Answer:
It depends on the protocol they are using for the game traffic. There are (at least) two methods:
In case 1. you won't see the IP address of other players, as your game client will only communicate with the game server(s). In case 2. you might see the IP address of other players. It depends on the nature of the P2P protocol. See a similar discussion:
I suggest to ask the same question in a forum for the game you are interested in. I guess other users of that game should know if it's possible or not. Regards answered 21 Jun '15, 07:49 Kurt Knochner ♦ Thanks for the answers! This is good to know. So i guess the only way to get to people's IP through a Relay server is by actually breaking in the server? Anyway thatnks allot for clearing this up for me! Greetings (21 Jun '15, 09:22) SuperVanquisher
Well yes, if you look at it that way ;-) (21 Jun '15, 09:37) Kurt Knochner ♦ Hint: If a supplied answer resolves your question can you please "accept" it by clicking the checkmark icon next to it. This highlights good answers for the benefit of subsequent users with the same or similar questions. For extra points you can up vote the answer (thumb up). (21 Jun '15, 09:37) Kurt Knochner ♦ |
Easily said: Yes that is what a server does. A server does not share all his connected client with these clients. Think about a webserver.
If the server should send the connected IPs around then it has to be done by the application and not by the network layer.