Arma Reforger Admin Commands
Complete reference for RCON and server administration commands.
#playersadminList all players currently connected to the server with their IDs
#players#players#kickadminKick a player from the server. Player ID can be found using #players
#kick <playerID> [reason]#kick 5 "Team killing"#banadminBan a player for specified duration. Duration in minutes, 0 for permanent
#ban <playerID> <duration> [reason]#ban 5 60 "Cheating"#unbanadminRemove a ban from a player using their ID or GUID
#unban <playerID|GUID>#unban 76561198012345678#bansadminList all currently banned players
#bans#bans#sayadminBroadcast a message to all players on the server
#say <message>#say Server restart in 5 minutes!#whisperadminSend a private message to a specific player
#whisper <playerID> <message>#whisper 5 Please follow server rules#restartadminRestart the server. Optional delay in seconds
#restart [delay]#restart 300#shutdownadminShutdown the server gracefully. Optional delay in seconds
#shutdown [delay]#shutdown 60#missionadminChange the current mission/scenario
#mission <name>#mission Conflict#lockadminLock the server to prevent new players from joining
#lock#lock#unlockadminUnlock the server to allow new players to join
#unlock#unlock#maxplayersadminSet the maximum number of players allowed
#maxplayers <number>#maxplayers 64#loginallAuthenticate as admin using the RCON password
#login <password>#login mySecretPassword#logoutadminLogout from admin session
#logout#logout#adminsadminList all connected administrators
#admins#admins#statusadminShow server status including player count, uptime, and performance
#status#status#versionadminDisplay server version information
#version#version#uptimeadminShow how long the server has been running
#uptime#uptimeUsing Admin Commands
Admin commands are executed through RCON (Remote Console) or in-game admin chat. You must be authenticated as an admin to use most commands. Use #login with your RCON password to authenticate, or ensure your player ID is in the admins array of your config.json.
Setting Up Admin Access
To use admin commands on your Arma Reforger server, you need to configure admin access in your config.json file. Add player Identity IDs to the admins array and set an RCON password.
"game": {
"admins": [
"YOUR_IDENTITY_ID_HERE"
]
}Use our Identity Finder to get your Bohemia Identity ID from your Steam ID.
RCON vs In-Game Admin
Admin commands can be executed in two ways:
- RCON - Remote console access from outside the game using an RCON client
- In-Game - Type commands in chat while logged in as admin
RCON is recommended for server management as it doesn't require you to be in-game.
How to Become Admin in Arma Reforger
Method 1: In-Game Admin Login
Use the #login command in chat with your admin password:
#login YourAdminPassword
The password is set in config.json under passwordAdmin
Method 2: RCON (Remote Console)
Connect remotely using BattlEye RCON protocol. Configure in config.json:
"rcon": {
"port": 19999,
"password": "RconPassword"
}Use our RCON Client to connect
Admin Configuration in config.json
{
"game": {
"passwordAdmin": "YourSecretAdminPassword"
},
"rcon": {
"address": "0.0.0.0",
"port": 19999,
"password": "YourRconPassword",
"permission": "admin",
"maxClients": 16
}
}Admin Settings:
passwordAdmin- Password for #login commandrcon.password- Password for RCON toolsrcon.permission- Required level (admin/moderator)
Security Tips:
- Use different passwords for admin and RCON
- Never share admin passwords publicly
- Use strong, random passwords
- Change passwords periodically
Frequently Asked Questions
What's the difference between admin and moderator permissions?
+
Admin has full access to all commands including server control (#restart, #shutdown). Moderator has limited access, typically player management (kick, ban) but not server control. Set permission level in config.json under rcon.permission.
How do I find a player's ID to kick or ban them?
+
Use the #players command to list all connected players with their IDs. The output shows player number, name, and GUID. Use the player number with kick/ban commands. Example: If "Player123" is #5, use #kick 5.
Can I give admin to specific players without sharing the password?
+
Arma Reforger doesn't have a built-in admin whitelist by Steam ID. All admins must use the shared passwordAdmin. For granular control, consider using different passwords for different permission levels (admin vs moderator) or third-party admin tools.
Why are my admin commands not working?
+
Common issues: 1) Not logged in - use #login first, 2) Wrong password - check config.json, 3) Missing # prefix - most commands need #, 4) Insufficient permissions - check permission level, 5) Command typo - verify syntax. For RCON, ensure port 19999 is open.
Execute Commands Remotely
Use our free RCON Client to manage your server from any browser without being in-game.