Skip to content

Instantly share code, notes, and snippets.

@kismetgerald
Forked from kamermans/fail2ban-allstatus.sh
Created August 25, 2016 21:03
Show Gist options
  • Save kismetgerald/34a8330adfb75550168cd4d8344e5ad6 to your computer and use it in GitHub Desktop.
Save kismetgerald/34a8330adfb75550168cd4d8344e5ad6 to your computer and use it in GitHub Desktop.
Show status of all fail2ban jails at once
#!/bin/bash
JAILS=`fail2ban-client status | grep "Jail list" | sed -E 's/^[^:]+:[ \t]+//' | sed 's/,//g'`
for JAIL in $JAILS
do
fail2ban-client status $JAIL
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment