DShield Top Attacker Networks

https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/dshield.netset Rohliste öffnen
20Einträge
+0 -0letzte Änderung
zuletzt aktualisiert
1,1 KBGröße
vor 2 Stundenzuletzt geprüft

Beschreibung

Das Internet Storm Center wertet Firewall-Protokolle vieler Teilnehmer aus und benennt daraus die derzeit auffälligsten Netzbereiche. Die Liste umfasst nur rund zwanzig Einträge und wird laufend ausgetauscht, taugt also für eine schlanke erste Abwehrstufe.

Integration

Address list per script

Fetch the list and import it into an address list called blocklist:

/tool fetch url="https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/dshield.netset" dst-path=blocklist.rsc
/import blocklist.rsc

If the list is a plain text file with one address or CIDR per line, convert it first:

/tool fetch url="https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/dshield.netset" dst-path=blocklist.txt
:foreach line in=[/file get blocklist.txt contents] do={
  /ip firewall address-list add list=blocklist address=$line comment="DShield Top Attacker Networks"
}

Use the list in the firewall

/ip firewall filter add chain=forward src-address-list=blocklist action=drop comment="DShield Top Attacker Networks"
/ip firewall filter add chain=forward dst-address-list=blocklist action=drop comment="DShield Top Attacker Networks"

Schedule the fetch with /system scheduler to keep the list current. Very large lists consume RAM, so check the available memory of your device first.

MikroTik RouterOS Dokumentation

Nach oben scrollen