Skip to content

Instantly share code, notes, and snippets.

@sander1
Last active February 7, 2024 16:28
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save sander1/075736a42db2c66bc6ce0fab159ca683 to your computer and use it in GitHub Desktop.
Send Pushover notification from Fail2Ban
# Fail2Ban configuration file
#
[Definition]
# Notify on Startup
actionstart = /usr/bin/curl -s -F "token=<token>" -F "user=<user>" -F "title=[Fail2Ban] <name>" -F "message=Jail <name> has been started successfully." https://api.pushover.net/1/messages
# Notify on Shutdown
actionstop = /usr/bin/curl -s -F "token=<token>" -F "user=<user>" -F "title=[Fail2Ban] <name>" -F "message=Jail <name> has been stopped." https://api.pushover.net/1/messages
#
actioncheck =
# Notify on Banned
actionban = /usr/bin/curl -s -F "token=<token>" -F "user=<user>" -F "title=[Fail2Ban] <name>" -F "message=Banned IP: <ip> Lines containing IP: `grep '<ip>' <logpath>`" https://api.pushover.net/1/messages
# Notify on Unbanned
actionunban =
[Init]
# Defaut name of the chain
name = default
# Application token key
token =
# User API key
user =
@mouzzampk2014-zz
Copy link

mouzzampk2014-zz commented Feb 27, 2019

I managed to run it :) Thank you so much. Could you please help me out how can I get notification when something unban

actionunban =

Thank you :)

@Chathu07
Copy link

Chathu07 commented Mar 25, 2019

This script sends IP's re-banned notification every time when I restart fail2ban (stop and start or just use restart commands). Any way to disable pushover notifications when fail2ban, re-banned IP's on restarting its service?

I already checked fail2ban/config/action.d/complain.conf file,

# bypass ban/unban for restored tickets
norestored = 1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment