RCON
RCON ist ein Protokoll, mit dem du den Server remote von einem anderen Gerät verwalten kannst. Pumpkin unterstützt RCON vollständig.
RCON konfigurieren
enabled: Boolean
toml
[rcon]
enabled = trueaddress: String
Adresse und Port, auf denen RCON lauschen soll.
toml
[rcon]
enabled = true
address = "0.0.0.0:25575"password: String
Das Passwort für RCON‑Authentifizierung.
toml
[rcon]
enabled = true
password = "[dein sicheres passwort hier]"max_connections: Integer
Maximale Anzahl gleichzeitiger RCON‑Verbindungen. 0 deaktiviert das Limit.
toml
[rcon]
enabled = true
max_connections = 5Logging
log_logged_successfully: Boolean
Ob erfolgreiche Logins protokolliert werden.
toml
[rcon.logging]
log_logged_successfully = truelog_wrong_password: Boolean
Ob falsche Passwortversuche protokolliert werden.
toml
[rcon.logging]
log_logged_successfully = truelog_commands: Boolean
Ob von RCON ausgeführte Befehle protokolliert werden.
toml
[rcon.logging]
log_commands = truelog_quit: Boolean
Ob das Beenden eines RCON‑Clients protokolliert wird.
toml
[rcon.logging]
log_quit = trueStandardkonfiguration
Standardmäßig ist RCON deaktiviert.
toml
[rcon]
enabled = false
address = "0.0.0.0:25575"
password = ""
max_connections = 0
[rcon.logging]
log_logged_successfully = true
log_wrong_password = true
log_commands = true
log_quit = true