How to Set Up RCON on Your Arma Reforger Server

Enable and use RCON for remote administration of your Arma Reforger dedicated server.

RCON (Remote Console) lets you send admin commands to your Arma Reforger server without being in-game. It's essential for automation, external admin tools, and managing the server from another machine.

Enable RCON

Open the Config Editor

In the XGamingServer Panel, click Arma Reforger Config in the sidebar.

Config Tool in the sidebar

Go to the Optional tab

Find the RCON section.

Config Editor Optional tab

Set RCON port and password

Configure the port (default 19999) and a strong password. The password controls full server access — use a strong one.

Save and restart

Click Save Changes and restart from Console.

Edit config.json

In Files, open config.json and add the rcon block:

"rcon": {
  "address": "0.0.0.0",
  "port": 19999,
  "password": "YourStrongPassword",
  "permission": "admin"
}

Connect via RCON

Get your RCON details

FieldValue
HostYour server IP (from Network in the panel)
PortThe RCON port (default 19999)
PasswordThe password you set in the config

Use an RCON client

Connect with any BattlEye RCON-compatible client. Common options:

  • BattleMetrics — web-based RCON management
  • PRConGUI — desktop RCON client
  • Custom scripts — Python/Node libraries for automation

Common RCON Commands

CommandDescription
#kick <playerID>Kick a player
#ban <playerID>Ban a player
#shutdownGracefully shut down the server
#restartRestart the scenario
#playersList all connected players
#say <message>Broadcast a chat message

Note: Available RCON commands depend on your server version. Check #help in your RCON session for the full list available on your server.

Security Best Practices

PracticeWhy
Use a strong passwordAt least 16 characters, mixed case, numbers, symbols
Restrict accessOnly share credentials with trusted admins
Change the default portAvoid 19999 — use a non-standard port
Monitor RCON logsTrack who connects and what commands run
Limit by IP if possibleSome hosts let you whitelist RCON source IPs

Warning: RCON gives full control over your server. A compromised RCON password lets an attacker kick all players, modify settings, or shut down the server. Treat it like a root password.

Tip: For ad-hoc commands, the Console tab in the XGamingServer panel gives direct server access without needing RCON setup. RCON is most useful for external tools and scripts.

How is this guide?

40% Off — Limited TimeGet your Arma Reforger server todayInstant setup, DDoS protection, and 24/7 support included.
Get a Server

On this page