]>
Commit | Line | Data |
---|---|---|
7c4cc0d8 CS |
1 | #!/bin/sh |
2 | ||
3 | # this is a sample block script for guardian. This should work with ipchains. | |
4 | # This command gets called by guardian as such: | |
fb30e20c | 5 | # guardian_block.sh <source_ip> |
7c4cc0d8 CS |
6 | # and the script will issue a command to block all traffic from that source ip |
7 | # address. The logic of weither or not it is safe to block that address is | |
8 | # done inside guardian itself. | |
9 | source=$1 | |
7c4cc0d8 | 10 | |
fb30e20c | 11 | /sbin/iptables -I INPUT -s $source -j DROP |