Fail2ban: differenze tra le versioni

Riga 62: Riga 62:
findtime = 1200
findtime = 1200
bantime = 1200
bantime = 1200
</pre>
=== Server di Posta Postfix ===
Creare il file di filtro <code>/etc/fail2ban/filter.d/postfix-auth.conf</code>:
<pre>
[Definition]
failregex = (?i): warning: [-._\w]+\[\]: SASL (?:LOGIN|PLAIN|(?:CRAM|DIGEST)-MD$
ignoreregex =
</pre>
Aggiungere questa sezione al file <code>/etc/fail2ban/jail.conf</code>:
<pre>
[postfix-auth]
enabled  = true
port    = smtp,ssmtp
filter  = postfix-auth
logpath  = /var/log/syslog
</pre>
Creare il file di filtro <code>/etc/fail2ban/filter.d/postfix-sasl.conf</code>:
<pre>
[Definition]
failregex = (?i): warning: [-._\w]+\[<HOST>\]: SASL (?:LOGIN|PLAIN|(?:CRAM|DIGE$
ignoreregex =
</pre>
Aggiungere questa sezione al file <code>/etc/fail2ban/jail.conf</code>:
<pre>
[postfix-sasl]
enabled  = true
port    = smtp,ssmtp,imap2,imap3,imaps,pop3,pop3s
filter  = postfix-sasl
logpath  = /var/log/mail.log
</pre>
</pre>