CoreRCON is an implementation of the RCON protocol on .NET Core. It currently supports connecting to a server, sending commands and receiving their output, multi-packat responses, and receiving logs from logaddress
.
- CS2, TF2 - (see Source RCON Protocol)
- Minecraft - Thanks to CodingContraption
- ARK: Survival Evolved - Confirmed working in 3.0.0 by tgardner851
- Project Zomboid Multiplayer - Confirmed working by captainqwerty
- Palworld - Thanks to ExusAltimus
- Potentially other Source-based RCON implementations (untested)
The IP address supplied here is the server you wish to connect to.
using CoreRCON;
using CoreRCON.Parsers.Standard;
using System.Net;
// ...
// Connect to a server
var rcon = new RCON(IPAddress.Parse("10.0.0.1"), 27015, "secret-password");
await rcon.ConnectAsync();
// Send a simple command and retrive response as string
string response = await rcon.SendCommandAsync("echo hi");
// Send "status" and try to parse the response
Status status = await rcon.SendCommandAsync<Status>("status");
Console.WriteLine($"Connected to: {status.Hostname}");
This assumes you have been added to the server's logaddress
list. You do not need to make an rcon connection to receive logs from a server.
The port specified must be open (check your router settings) and unused. Pass a value of 0
to use the first-available port. Access log.ResolvedPort
to see which port it chose.
Finally, pass an array (or list of params) of IPEndPoints
to express which servers you would like to receive logs from. This is because any server can send your server logs if they know which port you are listening on, as it's just UDP.
using CoreRCON;
using CoreRCON.Parsers.Standard;
// ...
// Listen on port 50000 for log packets coming from 10.0.0.1:27015
var log = new LogReceiver(50000, new IPEndPoint(IPAddress.Parse("10.0.0.1"), 27015));
log.Listen<ChatMessage>(chat =>
{
Console.WriteLine($"Chat message: {chat.Player.Name} said {chat.Message} on channel {chat.Channel}");
});
"Could not install package 'CoreRCON X.X.X'. You are trying to install this package into a project that targets '.NETFramework,Version=vy.y.y', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author."
If you are seeing an error similar to this, try changing your project's targeted .NET Framework version [#11]. If you are using Visual Studio 2015, the minimum resolvable framework version is 4.7. Visual Studio 2017 has improved support for .NET Core packages, allowing CoreRCON to resolve for versions as low as 4.6.1.
See Github Releases
Big thanks to ScottKaye for developing the original version