switch-lan-play
switch-lan-play copied to clipboard
IP Conflict issues way to monitor all IP's in use.
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!
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.
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
}
}
}