Configure a CS2 / CS:Source server (RCON, password, tickrate)
Set up RCON, sv_password and tickrate in server.cfg and startup parameters.
Configure a CS2 / CS:Source server (RCON, password, tickrate)
A CS2 or CS:Source server is configured via server.cfg (passwords, RCON, game rules) and the startup parameters (tickrate, port). CS2 also introduces sub-tick, which changes the gameplay picture.
Cause / The problem
Without RCON, you cannot administer the server remotely. Without sv_password, anyone can join. And the default tickrate (64) is too low for competitive use: shots register with delay.
Solution
- Edit
server.cfgingame/csgo/cfg/server.cfg(CS2) orcstrike/cfg/server.cfg(CS:S). - Server password (private access):
Leave empty for a public server.sv_password "MyPrivateMatch" - RCON password:
Avoid using any other method: set it only here or via the panel’s Custom RCON password field. Do not put it in the command line.rcon_password "ASolidRcon123" - Set the tickrate in the startup parameters (panel Variables):
In CS2, the sub-tick system records actions between ticks, but-tickrate 128-tickrate 128is still useful for movement and shooting precision. CS:S supports 66 or 100. - Rate-limit RCON to prevent brute-force attacks:
sv_rcon_banpenalty 60 sv_rcon_maxfailures 5 sv_rcon_minfailuretime 30 - Configure the basic rules:
sv_cheats 0 mp_freezetime 6 sv_pure 1 hostname "My FR Server — onesubnet" - Restart and test RCON from the client console:
rcon_password ASolidRcon123thenrcon status.
In CS2, the classic RCON protocol still works but some third-party tools (CS2 Web RCON) replace it for remote administration. Change the RCON password if you share it with a staff member who leaves.