Team Cymru Fullbogons (IPv4)

https://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt Rohliste öffnen
3.043Einträge
+3 -1letzte Änderung
zuletzt aktualisiert
46,9 KBGröße
vor 1 Tagzuletzt geprüft

Beschreibung

Filterliste aus dem öffentlichen FilterLists-Verzeichnis. Format: CIDRs (IPv4). Einzelheiten und Aufnahmekriterien stehen auf der Projektseite.

Integration

Address list per script

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

/tool fetch url="https://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt" 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://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt" dst-path=blocklist.txt
:foreach line in=[/file get blocklist.txt contents] do={
  /ip firewall address-list add list=blocklist address=$line comment="Team Cymru Fullbogons (IPv4)"
}

Use the list in the firewall

/ip firewall filter add chain=forward src-address-list=blocklist action=drop comment="Team Cymru Fullbogons (IPv4)"
/ip firewall filter add chain=forward dst-address-list=blocklist action=drop comment="Team Cymru Fullbogons (IPv4)"

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

Letzte Änderungen

Kürzlich hinzugefügte Einträge

  • 163.52.114.0/23
  • 163.52.116.0/22
  • 163.52.120.0/21

Kürzlich entfernte Einträge

  • 163.52.112.0/20
Nach oben scrollen