-
-
Save fkztw/ce8c6c7995d898d2bc89d01876d52908 to your computer and use it in GitHub Desktop.
Show status of all fail2ban jails at once
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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