roles/common: Relax SSH rate limit in firewalld

Now that I'm blocking ~10,000 malicious IPs from AbuseIPDB I feel
more comfortable using a more relaxed rate limit for SSH. A limit
of 12 per minute is about one every five seconds.
This commit is contained in:
Alan Orth 2019-10-06 18:27:45 +03:00
parent 8b28a65bf0
commit d030827f12
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
<source address="0.0.0.0/0"/>
<port protocol="tcp" port="22"/>
<accept>
<limit value="5/m"/>
<limit value="12/m"/>
</accept>
</rule>
@ -17,7 +17,7 @@
<source address="::/0"/>
<port protocol="tcp" port="22"/>
<accept>
<limit value="5/m"/>
<limit value="12/m"/>
</accept>
</rule>