# How to Set Up RCON on Your Conan Exiles Server (/docs/conan-exiles/rcon-setup)



import { Step, Steps } from 'fumadocs-ui/components/steps';

Enabling RCON [#enabling-rcon]

In `Game.ini`:

```ini
[RconPlugin]
RconEnabled=1
RconPassword=YourSecurePassword
RconPort=25575
RconMaxKarma=60
```

| Setting        | Default | Description                  |
| -------------- | ------- | ---------------------------- |
| `RconEnabled`  | `0`     | 1 = enabled                  |
| `RconPassword` | `""`    | RCON authentication password |
| `RconPort`     | `25575` | TCP port for RCON            |
| `RconMaxKarma` | `60`    | DDoS prevention threshold    |

Port 25575 (TCP) must be forwarded.

RCON Tools [#rcon-tools]

Any Source RCON-compatible client works:

* **mcrcon** (cross-platform CLI)
* **BattleMetrics RCON** (web-based)
* **rcon-cli** (Linux)

Using RCON [#using-rcon]

Connect, then type `help` for available commands. Use `con <playerid> <command>` to execute in-game admin commands remotely.

Related Guides [#related-guides]

* [Admin Setup & Commands](/docs/conan-exiles/admin-setup)
* [Server Configuration](/docs/conan-exiles/server-config)
