CoreRCON has been moved to Challengermode/CoreRcon per #17! Please direct any issues and pull requests there.
CoreRCON is an implementation of the RCON protocol on .NET Core. It currently supports connecting to a server, sending commands and receiving their output, and receiving logs from logaddress
.
- Team Fortress 2 - (see Source RCON Protocol)
- Minecraft - Thanks to CodingContraption
- ARK: Survival Evolved - Confirmed by tgardner851
- Potentially other Source-based RCON implementations (untested)
CoreRCON is available on NuGet, and can be installed with:
Install-Package CoreRCON
The IP address supplied here is the server you wish to connect to.
using CoreRCON;
using CoreRCON.Parsers.Standard;
// ...
// Connect to a server
var rcon = new RCON(IPAddress.Parse("10.0.0.1"), 27015, "secret-password");
// Send "status"
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.
- Supports Minecraft
- Some
ServerQuery
methods now require a server type to differentiate between Source and Minecraft