IPS

Blocklisten für iptables / ipset

Classic Linux firewall setup: load the addresses into an ipset and drop matching traffic.

1kompatible Listen
1unterstützte Formate
10Kategorien

Blockliste in iptables / ipset einrichten

ipset create blocklist hash:net -exist
curl -fsSL "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv6.txt" | grep -Eo '^[0-9]{1,3}(.[0-9]{1,3}){3}(/[0-9]{1,2})?' | 
  while read -r net; do ipset add blocklist "$net" -exist; done
iptables -I INPUT  -m set --match-set blocklist src -j DROP
iptables -I FORWARD -m set --match-set blocklist src -j DROP

Persist the set and re-run the download from cron to keep it current:

ipset save blocklist -f /etc/ipset.blocklist
# /etc/cron.daily/blocklist

Die oben gezeigte Adresse ist ein Beispiel. Jede Liste im Verzeichnis hat ihre eigene URL, die sich mit einem Klick kopieren lässt.

Nach Thema

Alle 1 Listen für iptables / ipset

Liste einreichen
1 Liste < 7 Tage < 30 Tage älter

Filterliste aus den Bereichen Kryptomining, Werbung, Privatsphäre, Malware und Phishing. Format: IPs (IPv4). Einzelheiten und Aufnahmekriterien stehen auf der P…

Kryptomining Malware Phishing IP / CIDR
- Einträge
±0 letzte Änderung
aktualisiert
FHIPSMTWRTOPN+2
Nach oben scrollen