ValveSoftware / source-sdk-2013

The 2013 edition of the Source SDK
https://developer.valvesoftware.com/wiki/SDK2013_GettingStarted
Other
3.69k stars 1.99k forks source link

Linux Dedicated Server - rcon not working - TCP 27015 is being bound incorrectly (?) #561

Open palaster opened 1 year ago

palaster commented 1 year ago

Expands on #155 On Windows, the TCP port is correctly bound to the broadcast address while on Linux the port is incorrectly bound to the local loopback address (127.x.x.x) On Windows running a CSS server, using netstat we can see the open ports: windows_tcp On Linux also running a CSS server, also using netstat: linux_tcp We can use telnet or netcat on the server to check if TCP on port 27015: nc_screenshot

I have tested this on only CSS and Gmod. Also, both the Windows and Linux machines had their Firewalls turned off.

kolevv commented 1 month ago

I'm running into the same issue. +ip 0.0.0.0 Adding this to my command line arguments аs a workaround, I think it forces the server to listen on any ipv4 address.