switch-lan-play icon indicating copy to clipboard operation
switch-lan-play copied to clipboard

IP Conflict issues way to monitor all IP's in use.

Open theiconrichie opened this issue 4 years ago • 2 comments

Hi Man,

thanks for the effort on this I host my own server in the cloud and i host on a daily bases and i can run for hours with no issue but have to change my switch IP because of conflicts with other users.

is there a way you can make a web gui to monitor all IP's in use being they are public?

thanks!

theiconrichie avatar May 08 '20 17:05 theiconrichie

there are over 65 thousand IPs to choose from, you shouldn't have a problem. that said, since you run your own server, assuming it's rust, you can see what IP's are in use on your system already.

drizuid avatar May 15 '20 19:05 drizuid

I have personally come across two of four people conflicting. Rare, but it does absolutely happen, especially since the human mind tends to think in patterns, rather than truly random.

If you are using the Rust implementation, you can run the following GraphQL query to see IP's in use by switch username:

query ServerRoom {
  room {
     nodes {
    ip
    nodeId
    isConnected
    playerName
  }
 }
}

SloneFallion avatar May 19 '20 03:05 SloneFallion