Using RCon for Real-Time Server Management in Arma Reforger
RCon (Remote Console) lets you manage your Reforger server without logging into the game. Kick players, restart missions, ban trolls, and monitor server health—all from a remote tool. Here’s how to set it up and use it like a pro.Step 1: Enable RCon in Your Server Config
Edit `BEServer_x64.cfg` in your server’s `Configs` directory:
Code:
RConPort 5678
RConPassword yourSecurePassword
- Pick a secure port (default is 5678)
- Use a strong password—this grants full control
- Restart the server after saving
Step 2: Connect with a RCon Client
Recommended tool: BattleWarden- Download and install BattleWarden
- Create a new connection profile
- Enter:
- Server IP
- RCon Port
- RCon Password
- Server IP
- Connect and verify access
Step 3: Core RCon Commands
Once connected, you can run these commands:
Code:
#login yourSecurePassword
#players
#kick <playerID>
#ban create <playerID> <duration> <reason>
#ban remove <identityID>
#ban list
#restart
#shutdown
Examples:
Code:
#kick 123456789
#ban create 123456789 3600 teamkilling
#ban list 2
#shutdown
Step 4: Custom RCon Commands
Bohemia-specific commands start with `@` and aren’t part of standard RCon:
Code:
@logout
@status
@diag
These are used for diagnostics and session control. If your RCon client crashes, the server will auto-deauth after 45 seconds.
Step 5: Monitor & React in Real Time
- Use `#players` to get player IDs
- Use `#id` to get your own ID
- Use `#roles` to check admin status
- Use `#reassign` to reset roles mid-session
Security Tips
- Never expose RCon port publicly—use firewall rules
- Rotate your RCon password regularly
- Log all RCon activity for audit purposes
- Limit access to trusted admins only
Final Notes
RCon gives you full control over your Reforger server without needing to be in-game. Whether you're banning griefers mid-op or restarting a broken scenario, it’s your remote admin lifeline.Need help scripting RCon automation or integrating with Discord alerts? Tag TMG Manic or drop your config—we build loud and clean.
Reference: ZAP Hosting RCon Guide
Bohemia Server Management Docs