I am trying to connect to a Minecraft server but get a connection Timeout when tryping to connect although the Server is showing up as online
Minecraft Multiplayer screen
This question meight seem out of place, but wait.
The minecraft server is running on an Proxmox Container.
The Proxmox container is running on a Home-Server.
The Home-Server connects to an Wireguard Server running on Linode.
So I route the Trafic comming to the public Linode Server to the Homeserver over wireguard and on the Homeserver, I route the trafic again, to the Minecraft server and Back.
Routing
For the Routing part I used nftable nat rules on both the linode Server and the proxmox server. Here is an example from the Linode server.
table ip nat {
chain prerouting {
type nat hook prerouting priority dstnat; policy accept;
tcp dport 25565 dnat to 192.168.0.46
udp dport 25565 dnat to 192.168.0.46
}
chain postrouting {
type nat hook postrouting priority srcnat; policy accept;
masquerade
}
}
As the basic comunication to the server seems to work, I am really confused why I can't connect.
Maybe somebody can help me decipher the Wireshark log from the Minecraft client.
Minecraft client Wireshark log
Any help, suggestions or questions are more than welcome, as I have sunken more hours into this, than I am willing to admit.
Cheers
Leo
PS.: I have no clue if the title is even remotely correct, so please correct me. :)