From d3aea2a33feb2e738a4ce49ebf3112102f718d72 Mon Sep 17 00:00:00 2001 From: Amos <48657826+Mauler125@users.noreply.github.com> Date: Tue, 15 Feb 2022 02:33:20 +0100 Subject: [PATCH] Add RCON config files --- r5dev/resource/cfg/rcon_client.cfg | 7 +++++++ r5dev/resource/cfg/rcon_client_dev.cfg | 7 +++++++ r5dev/resource/cfg/rcon_server.cfg | 7 +++++++ r5dev/resource/cfg/rcon_server_dev.cfg | 12 ++++++++++++ 4 files changed, 33 insertions(+) create mode 100644 r5dev/resource/cfg/rcon_client.cfg create mode 100644 r5dev/resource/cfg/rcon_client_dev.cfg create mode 100644 r5dev/resource/cfg/rcon_server.cfg create mode 100644 r5dev/resource/cfg/rcon_server_dev.cfg diff --git a/r5dev/resource/cfg/rcon_client.cfg b/r5dev/resource/cfg/rcon_client.cfg new file mode 100644 index 00000000..8d250bb0 --- /dev/null +++ b/r5dev/resource/cfg/rcon_client.cfg @@ -0,0 +1,7 @@ +////////////////// rcon_server configuration file. +// This file is executed automatically on startup. +// See https://developer.valvesoftware.com/wiki/Source_RCON_Protocol for more information regarding RCON. +// NOTE: This implementation is custom and differs slightly from Valve's implementation. + +rcon_password "" // !! WARNING !! Keep empty to disable RCON. Only enable this if you plan on using RCON. +rcon_address "[127.0.0.1]:37015" // The RCON system will attempt to connect to this address when 'rcon' command is issued. diff --git a/r5dev/resource/cfg/rcon_client_dev.cfg b/r5dev/resource/cfg/rcon_client_dev.cfg new file mode 100644 index 00000000..05ad06f6 --- /dev/null +++ b/r5dev/resource/cfg/rcon_client_dev.cfg @@ -0,0 +1,7 @@ +////////////// rcon_client_dev configuration file. +// This file is executed automatically on startup. +// See https://developer.valvesoftware.com/wiki/Source_RCON_Protocol for more information regarding RCON. +// NOTE: This implementation is custom and differs slightly from Valve's implementation. + +rcon_password "rconamos" // !! WARNING !! Keep empty to disable RCON. Only enable this if you plan on using RCON. +rcon_address "[127.0.0.1]:37015" // The RCON system will attempt to connect to this address when 'rcon' command is issued. diff --git a/r5dev/resource/cfg/rcon_server.cfg b/r5dev/resource/cfg/rcon_server.cfg new file mode 100644 index 00000000..2ff66ed7 --- /dev/null +++ b/r5dev/resource/cfg/rcon_server.cfg @@ -0,0 +1,7 @@ +////////////////// rcon_client configuration file. +// This file is executed automatically on startup. +// See https://developer.valvesoftware.com/wiki/Source_RCON_Protocol for more information regarding RCON. +// NOTE: This implementation is custom and differs slightly from Valve's implementation. + +rcon_password "" // !! WARNING !! Keep empty to disable RCON. Only enable this if you plan on using RCON. +sv_rcon_whitelist_address "::ffff:127.0.0.1" // This IP will never get disconnected or banned. Enter your own IP address in the same format here (counts for IPv4 and IPv6). diff --git a/r5dev/resource/cfg/rcon_server_dev.cfg b/r5dev/resource/cfg/rcon_server_dev.cfg new file mode 100644 index 00000000..e926f92b --- /dev/null +++ b/r5dev/resource/cfg/rcon_server_dev.cfg @@ -0,0 +1,12 @@ +////////////// rcon_server_dev configuration file. +// This file is executed automatically on startup. +// See https://developer.valvesoftware.com/wiki/Source_RCON_Protocol for more information regarding RCON. +// NOTE: This implementation is custom and differs slightly from Valve's implementation. + +rcon_password "rconamos" // !! WARNING !! Keep empty to disable RCON. Only enable this if you plan on using RCON. +sv_rcon_debug "1" // Show RCON debug information ( ! slower! ). +sv_rcon_banpenalty "1" // Number of minutes to ban IP before removing from ban vector. +sv_rcon_maxfailures "5" // Max number of tomes a user can ignore RCON authentication before being banned. +sv_rcon_maxignores "5" // Max number of times a user can ignore the no-auth message before being banned. +sv_rcon_maxsockets "2" // Max number of accepted sockets before the server starts closing redundant sockets. +sv_rcon_whitelist_address "::ffff:127.0.0.1" // This IP will never get disconnected or banned. Enter your own IP address in the same format here (counts for IPv4 and IPv6).