2015-10-28 35 views
0

與fail2ban過濾器有點問題,由於某些原因,它在10分鐘後解除綁定,即使我將禁止長度設置爲一年。你能幫助一個兄弟出去嗎?Fail2Ban在10分鐘後解除綁定。禁令沒有警告?

的過濾器jail.local聲明:

[nginx-proxy] 
enabled = true 
#port = http,https 
action = iptables-multiport[name=NoProxy, port="http,https"] 
filter = nginx-proxy 
logpath = /etc/nginx/logs/*access*.log 
bantime = 31536000 # 1 year 
maxretry = 0 

[nginx-shellshock] 
enabled = true 
#port = http,https 
action = iptables-multiport[name=ShellShock, port="http,https"] 
filter = nginx-shellshock 
logpath = /etc/nginx/logs/*access*.log 
bantime = 31536000 # 1 year 
maxretry = 0 

nginx的-proxy.conf

[Definition] 
failregex = ^<HOST> .* "GET http.* 
ignoreregex = 

nginx的-shellshock.conf

[Definition] 
failregex = ^<HOST>.*\(\s*\)\s*\{[^"]*\}\s*\;[^"]+.* 

ignoreregex = 

這裏是我的fail2ban.log文件

2015-10-27 06:21:48,953 fail2ban.jail   [8319]: INFO Jail 'nginx-auth' started 
2015-10-27 06:21:48,981 fail2ban.jail   [8319]: INFO Jail 'nginx-badbots' started 
2015-10-27 06:21:49,022 fail2ban.jail   [8319]: INFO Jail 'nginx-proxy' started 
2015-10-27 06:21:49,062 fail2ban.jail   [8319]: INFO Jail 'nginx-shellshock' started 
2015-10-27 13:17:40,737 fail2ban.filter   [8319]: INFO [nginx-shellshock] Found 108.171.178.73 
2015-10-27 13:17:41,667 fail2ban.actions  [8319]: NOTICE [nginx-shellshock] Ban 108.171.178.73 
2015-10-27 13:17:41,747 fail2ban.filter   [8319]: INFO [nginx-shellshock] Found 108.171.178.73 
2015-10-27 13:17:41,747 fail2ban.filter   [8319]: INFO [nginx-shellshock] Found 108.171.178.73 
2015-10-27 13:17:41,880 fail2ban.actions  [8319]: NOTICE [nginx-shellshock] 108.171.178.73 already banned 
2015-10-27 13:27:42,572 fail2ban.actions  [8319]: NOTICE [nginx-shellshock] Unban 108.171.178.73 

上的fail2ban服務重新啓動,我也得到一個錯誤約彈震bantime被設置爲none:

2015-10-28 00:29:31,351 fail2ban.transmitter [11600]: WARNING Command ['set', 'nginx-shellshock', 'bantime', 'None'] has failed. Received ValueError("invalid literal for int() with base 10: 'None'",) 

非常感謝任何幫助,謝謝。

回答

0

整個問題都是圍繞着我使用註釋標記,顯然在fail2ban配置中評論整個行。將哈希標記更改爲分號或將其放在另一行上。