20.10.2013, 15:24
hi there, so recently my server is getting RCON attacked all day long, and it causes lag to other players somehow. Does anyone know how to fix it? and filterscript or something
new string[40]; format(string,sizeof(string),"banip %s",ip); SendRconCommand(string);
Forget about rcon 0 because it doesn't work, you will still be attacked. Build a strong password, all combinations of characters, at least 20+ chars long. Build a command that allows you, and only you to use the rcon feature without logging in. And finally, on OnRconLoginAttempt() ban any IPs that try to log in, successful or not.
Код:
new string[40]; format(string,sizeof(string),"banip %s",ip); SendRconCommand(string); |
First of all, put rcon 0, and I believe if you delete "rcon_password", it will disable the Entire RCON system even in-game... Not sure, tho.
|
Forget about rcon 0 because it doesn't work, you will still be attacked. Build a strong password, all combinations of characters, at least 20+ chars long. Build a command that allows you, and only you to use the rcon feature without logging in. And finally, on OnRconLoginAttempt() ban any IPs that try to log in, successful or not.
Код:
new string[40]; format(string,sizeof(string),"banip %s",ip); SendRconCommand(string); |