mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Resource: update configuration files
Slightly adjusted RCON configuration files, recent changes implemented RCON encryption (users can specify their own AES keys).
This commit is contained in:
parent
a26e692b37
commit
aee8447320
@ -4,3 +4,4 @@
|
||||
// NOTE: This implementation is custom and differs slightly from Valve's implementation.
|
||||
|
||||
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).
|
||||
rcon_key "" // Base64 encoded AES-128 key that will be used to encrypt rcon traffic, leave this empty for a random key that gets printed to the console.
|
||||
|
@ -3,4 +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.
|
||||
|
||||
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).
|
||||
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).
|
||||
rcon_key "WDNWLmJYQ2ZlM0VoTid3Yg==" // Base64 encoded AES-128 key that will be used to encrypt rcon traffic, leave this empty for a random key that gets printed to the console.
|
||||
|
@ -5,3 +5,4 @@
|
||||
|
||||
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).
|
||||
rcon_key "" // Base64 encoded AES-128 key that will be used to encrypt rcon traffic, leave this empty for a random key that gets printed to the console.
|
||||
|
@ -11,3 +11,4 @@ sv_rcon_maxsockets "2" // Max number of accepted sockets b
|
||||
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! ).
|
||||
rcon_key "WDNWLmJYQ2ZlM0VoTid3Yg==" // Base64 encoded AES-128 key that will be used to encrypt rcon traffic, leave this empty for a random key that gets printed to the console.
|
||||
|
Loading…
x
Reference in New Issue
Block a user