fail2ban script added

This commit is contained in:
Dirk Alders 2022-10-30 07:56:46 +01:00
parent c24bd5ad9d
commit d1dd85fc35

8
fail2ban-status Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
#!/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