base-stack/sbin/fbl.sh
Matthew Saunders Brown 3a27b9a841 initial commit
2022-11-17 09:47:11 -08:00

21 lines
355 B
Bash
Executable File

#!/bin/bash
# IP should be first arg
if [ -n "$1" ]; then
IP=$1
else
echo "IP not set"
exit 1
fi
if [[ firewall-cmd --ipset=blacklist --query-entry $IP >/dev/null ]]; then
echo "IP $IP already in blacklist. Doing nothing."
else
firewall-cmd --ipset=blacklist --add-entry=$IP
firewall-cmd --permanent --ipset=blacklist --add-entry=$IP
fi