Dateiansicht:
Datei: | Projekte -> Apache,mod_evasive,iptables:Helfer-Skripte zum (zeitweisen) Blockieren von IP-Adressen -> fwlist |
---|---|
md5: | d1e5a0f9d004ffa5c9e4437dbd7e0aa7 |
sha1: | 03fb941d12d53a5f175af5eb3a0a2eaa3681646b |
Download-Link: | Download |
- #!/usr/bin/sudo /bin/bash
- ## safety instructions: ##
- ## chown root:root ##
- ## chmod 0755 ##
- if [ -z "${1}" ]; then
- iptables -nL
- else
- ip=$(echo -n "${1}" | tr -cd '0123456789./');
- iptables -nL | grep "${ip}";
- fi