Arma Reforger RCON Terminal
Connect to your Arma Reforger server and run RCon commands live through our BattlEye UDP proxy — #players, #kick, #ban create, #restart, #shutdown, @logout. Rate-limited, credentials saved in browser only. Default port 19999.
rcon.address, rcon.port, and rcon.password. Connection details are saved in your browser's localStorage — use a dedicated RCon password, not one shared with other services.Server Connection
Commands
#playersQueryList current players and their playerIds. The only query available to RCon Monitor role.
No parameters required.
#playersConnect to your server first.
Terminal Output
Connect and send a command to see output here…
About the Arma Reforger RCon Terminal
Arma Reforger's RCon runs over the BattlEye RCon protocol — a UDP-based admin channel with CRC32 packet integrity. Because browsers cannot speak UDP directly, this terminal goes through a stateless proxy on our server: your command hits the proxy, the proxy authenticates with your server using your RCon password, runs the single command, and returns the response. No session is kept open, nothing is logged, and the connection is torn down after each request.
Enabling RCon in your config.json
RCon is off by default in Arma Reforger. Add the rcon block to your config.json:
{
"rcon": {
"address": "0.0.0.0",
"port": 19999,
"password": "YourStrongRconPassword",
"maxClients": 16,
"permission": "admin",
"blacklist": [],
"whitelist": []
}
}address—0.0.0.0listens on every interface;127.0.0.1restricts RCon to the server host only.port— UDP, default 19999. Must be open end-to-end.permission—admin(all commands) ormonitor(read-only). Case-sensitive.whitelist— optional IP whitelist for RCon clients. Leave empty to allow any.
Use our Config Validator to catch the case-sensitive mistakes and port collisions before the server silently fails to start.
Who Can Run Which Command
Arma Reforger splits RCon clients into two roles and in-game admins into three. Most commands require an admin role; only a few are available to every player. The matrix below follows the official Bohemia wiki.
| Command | Logged Admin | Voted Admin | Player | RCon Admin | RCon Monitor |
|---|---|---|---|---|---|
| #login | — | — | ✓ | — | — |
| #logout | ✓ | ✓ | — | — | — |
| #roles | ✓ | ✓ | ✓ | — | — |
| #restart | ✓ | — | — | ✓ | — |
| #shutdown | ✓ | — | — | ✓ | — |
| #kick | ✓ | — | — | ✓ | — |
| #ban create/remove/list | ✓ | — | — | ✓ | — |
| #id | ✓ | ✓ | ✓ | — | — |
| #players | ✓ | ✓ | ✓ | ✓ | ✓ |
| @logout (RCon only) | — | — | — | ✓ | ✓ |
Set the RCon role in config.rcon.permission — use admin for your management UI and monitor for read-only stats dashboards.
Common RCon Command Recipes
Find a player's ID before kicking
> #players < 123456789 PlayerOne < 234567890 Griefer42 > #kick 234567890
Ban a currently offline identity for 24 hours
> #ban create 234567890 86400 teamkilling > #ban list < BanID ; Player UID ; Duration
Graceful scenario restart without kicking players
> #restart
Free your RCon slot when you're done
> @logout
Skipping this is harmless — the server auto-disconnects idle RCon clients after 45 s — but doing it is cleaner and lets another admin connect immediately.
RCon Troubleshooting
- "Authentication failed" — password mismatch. Retype both sides rather than copy-pasting (invisible whitespace is the most common cause). Check both
config.rcon.passwordandBEServer_x64.cfg RConPassword. - Login succeeds, commands time out — usually a UDP issue with the command response. Your hosting provider may rate-limit outbound UDP, or a DDoS filter is flagging BattlEye packets. Open a ticket with your host and mention UDP 19999 specifically.
- "(command sent — no response body)" — not an error.
#restart,#shutdown,#ban createall ack the RCon packet but never reply with a body. Check the server console log or#playersto confirm the effect. - Command returns "Insufficient permissions" or silently does nothing — your
rcon.permissionis probably set tomonitor. Monitor can only run#playersand@logout. Change toadminand restart the server. - Rate limit (429) — our proxy caps each IP at 30 requests per minute. For higher-throughput automation, run your own RCon client against the server directly from a fixed admin IP.
Related Arma Reforger Admin Tools
- RCon Command Reference — full catalogue with verified/unverified flags and category filter.
- config.json Generator — generate the full server config including the RCon block.
- config.json Validator — catch typos in
rcon.permissionand port collisions before the server silently fails. - BattlEye Config Helper — generate
BEServer_x64.cfglines including a separate BattlEye RCon password.
RCon Security Best Practice
- Dedicated password. RCon passwords leak — through screenshots, chat logs, or credential reuse. Never use the same password for RCon, SSH, and your hosting panel.
- Rotate regularly. Change the password whenever an admin leaves your team or a tool-chain vendor changes. Update config.json, restart the server, and update saved credentials in clients.
- Prefer IP whitelisting. Set
rcon.whitelistto the fixed IPs your admin team uses. Attackers cannot brute-force a password from the wrong IP if RCon silently drops their packets. - Monitor the server log. Arma Reforger logs every successful RCon login. Watch for logins from unexpected IPs.
Frequently Asked Questions
Arma Reforger RCON Terminal — FAQ
Is this Arma Reforger RCON Terminal free to use?
Yes, the Arma Reforger RCON Terminal is 100% free — no signup required, no hidden fees, no downloads. Everything runs in your browser.
How accurate is the Arma Reforger RCON Terminal?
Values are pulled from the Arma Reforger game files and community-verified formulas. Results match what you see in-game, and we update the tool when the game gets major patches.
Can I host a Arma Reforger server with XGamingServer?
Yes. XGamingServer offers instant Arma Reforger server hosting with mod support, automatic backups, DDoS protection, and 24/7 support. All popular game settings are pre-configured.
Does the RCON Terminal work on mobile?
Yes, the RCON Terminal is fully responsive and works on desktop, tablet, and mobile browsers.
You might also need
Interactive Everon + Arland Map
Full interactive world map for both Arma Reforger terrains — 19 towns, 5 military bases, 5 depots, 180+ supply points on Everon plus full Arland POIs
Server Config Generator
Generate config.json with all server settings
config.json Validator
Paste your Arma Reforger config.json and catch syntax errors, invalid port ranges, bad scenarioId format, case-sensitive rcon.permission mistakes, and PSN+mods conflicts before the server silently fails to start.
Scenario Picker & ID Reference
Browse all 31 official Arma Reforger scenarios with scenarioId values, recommended player counts, AI, mods, and crossplay info. Compare Conflict vs Game Master vs Combat Ops. Copy-paste scenario IDs direct into your config.

Config Tool Built Into XGamingServer
Get managed Arma Reforger hosting with this tool in your panel — configure, deploy, and play in minutes. No file uploads needed.