mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 11:43:25 +02:00
12 lines
418 B
Bash
12 lines
418 B
Bash
#!/bin/sh
|
|
|
|
# this is a sample block script for guardian. This should work with ipchains.
|
|
# This command gets called by guardian as such:
|
|
# guardian_block.sh <source_ip>
|
|
# and the script will issue a command to block all traffic from that source ip
|
|
# address. The logic of weither or not it is safe to block that address is
|
|
# done inside guardian itself.
|
|
source=$1
|
|
|
|
/sbin/iptables -I GUARDIANINPUT -s $source -j DROP
|