Skip to content

Instantly share code, notes, and snippets.

@mingderwang
Created February 8, 2018 05:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mingderwang/fe80b8a202fc6c80348ddf53a2698975 to your computer and use it in GitHub Desktop.
Save mingderwang/fe80b8a202fc6c80348ddf53a2698975 to your computer and use it in GitHub Desktop.
all fail2ban status
#!/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