I'm unable to get my server to allow connections outside my network. I understand that it might be a port forwarding problem, router firewall problem, or an OS firewall problem.
A few things to note: (This is copy and pasted from my server config)
ip="0.0.0.0"
port="28015"
rconport="28016"
appport=28082
When I check "canyouseeme.org" they say that my 28016 and 28082 are visible. However the 28015 is responding with "connection refused".
I have tried to use the port 28017 as well with the same problem.
My router has 28015, 28016, & 28082 port forwarded for TCP & UDP.
All of my firewalls are disabled.
I CAN connect to the server in Rust via "connect localhost:28015" (from the Host PC on my network)
I CAN connect to the server in Rust via "connect [Internal-IP]:28015" (from another PC on my network)
I CANNOT connect to the server in Rust via "connect [External-IP]:28015" - Error: "Disconnected: Connection Attempt Failed"
I CAN see the server in the server list, but I CANNOT connect to it.
I've tried this on Windows 10, Linux, & multiple computers. I have not tried different rounters.
I've followed every tutorial imaginable. Please help.
Thanks in advance.