diff --git a/r5dev/resource/cfg/tools/rcon_client.cfg b/r5dev/resource/cfg/tools/rcon_client.cfg index 21b6b565..6d088d92 100644 --- a/r5dev/resource/cfg/tools/rcon_client.cfg +++ b/r5dev/resource/cfg/tools/rcon_client.cfg @@ -3,4 +3,4 @@ // 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_address "localhost" // The RCON system will attempt to connect to this address when 'rcon' command is issued. +cl_rcon_address "" // The RCON system will attempt to connect to this address when 'rcon' command is issued. Example [::FFFF:127.0.0.1]:37015 (counts for IPv4 and IPv6). diff --git a/r5dev/resource/cfg/tools/rcon_client_dev.cfg b/r5dev/resource/cfg/tools/rcon_client_dev.cfg index 22b16a0a..cf95e3e9 100644 --- a/r5dev/resource/cfg/tools/rcon_client_dev.cfg +++ b/r5dev/resource/cfg/tools/rcon_client_dev.cfg @@ -3,4 +3,4 @@ // 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_address "localhost" // The RCON system will attempt to connect to this address when 'rcon' command is issued. +cl_rcon_address "" // The RCON system will attempt to connect to this address when 'rcon' command is issued. Example [::FFFF:127.0.0.1]:37015 (counts for IPv4 and IPv6). diff --git a/r5dev/resource/cfg/tools/rcon_server.cfg b/r5dev/resource/cfg/tools/rcon_server.cfg index 1f016c15..c38db08a 100644 --- a/r5dev/resource/cfg/tools/rcon_server.cfg +++ b/r5dev/resource/cfg/tools/rcon_server.cfg @@ -3,5 +3,5 @@ // 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 "" // This IP will never get disconnected or banned. Enter your own IP address in the same format here (counts for IPv4 and IPv6). +sv_rcon_password "" // !! WARNING !! Keep empty to disable RCON. Only enable this if you plan on using RCON. +sv_rcon_whitelist_address "" // This IP will never get disconnected or banned. Example [::FFFF:127.0.0.1]:37005 (counts for IPv4 and IPv6). diff --git a/r5dev/resource/cfg/tools/rcon_server_dev.cfg b/r5dev/resource/cfg/tools/rcon_server_dev.cfg index 734e5216..d605c4eb 100644 --- a/r5dev/resource/cfg/tools/rcon_server_dev.cfg +++ b/r5dev/resource/cfg/tools/rcon_server_dev.cfg @@ -3,10 +3,11 @@ // 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_debug "1" // Show RCON debug information ( ! slower! ). +sv_rcon_password "" // !! WARNING !! Keep empty to disable RCON. Only enable this if you plan on using RCON. 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 "" // This IP will never get disconnected or banned. Enter your own IP address in the same format here (counts for IPv4 and IPv6). +sv_rcon_whitelist_address "" // This IP will never get disconnected or banned. Example [::FFFF:127.0.0.1]:37005 (counts for IPv4 and IPv6). + +rcon_debug "1" // Show RCON debug information ( ! slower! ).