• Server RCON
    35 replies, posted
I can't get any existing tool nor my own java application to successfully connect to the Rust RCON port. What is this, why is there little to no documentation for this? Rust nor Unity is NEVER mentioned in any of the supported games of any existing tool. Is there anyone who has an example in java on how to simply perform the command "global.say bla" via the rcon port?
Sure [url]https://developer.valvesoftware.com/wiki/Source_RCON_Protocol[/url]
I'm having issues working with the remote RCON service in Rust. It seems like the server is not following the Source spec properly. For example, I'll receive responses with id that doesn't match the id of the request sent. Also, I'll sometimes receive 2 or 3 copies of the same response. Another issue (which is tolerable), is that I'm receiving responses with the type: 4, which isn't even a valid type according to the spec ([url]https://developer.valvesoftware.com/wiki/Source_RCON_Protocol#Packet_Type[/url]). Lastly-and this is a huge issue-the response size value is incorrect for large responses (eg., `find *`), which seems to be capped at 4010. So there's no way to know the full size of the response, and it thus cannot be parsed properly. Any help with this would be greatly appreciated!
[QUOTE=garry;43556460]Sure [url]https://developer.valvesoftware.com/wiki/Source_RCON_Protocol[/url][/QUOTE] Hello, I tried to connect to the rcon of my server using python libraries as described in the link you provided however i am encountering a problem. I saw other people complaining about problems using rust rcon server, for example when I try running the status command Im getting a response type of 4, which is not one of the standard response type. I also get problems with packet size. Could someone provide me a basic working code using any languages ?
[url]http://facepunch.com/showthread.php?t=1384264[/url]
[QUOTE=camupod;44093973]Another issue (which is tolerable), is that I'm receiving responses with the type: 4, which isn't even a valid type according to the spec ([url]https://developer.valvesoftware.com/wiki/Source_RCON_Protocol#Packet_Type[/url]).[/QUOTE] Have you figured this out yet? I've been Googling for about an hour now and still couldn't find why I'm getting a type 4, and what it means..
Sorry, you need to Log In to post a reply to this thread.