Tor Node List (dan.me.uk)

https://www.dan.me.uk/torlist/ Rohliste öffnen
9.721Einträge
+0 -7letzte Änderung
zuletzt aktualisiert
207,8 KBGröße
vor 2 Stundenzuletzt geprüft

Beschreibung

Erfasst neben den Austrittsknoten auch Eingangs- und Mittelknoten, ist also deutlich umfangreicher als die offizielle Liste. Sinnvoll, wenn jede Beteiligung am Tor-Netz erkannt werden soll. Der Betreiber bittet darum, die Liste höchstens halbstündlich abzurufen.

Integration

Address list per script

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

/tool fetch url="https://www.dan.me.uk/torlist/" 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.dan.me.uk/torlist/" dst-path=blocklist.txt
:foreach line in=[/file get blocklist.txt contents] do={
  /ip firewall address-list add list=blocklist address=$line comment="Tor Node List (dan.me.uk)"
}

Use the list in the firewall

/ip firewall filter add chain=forward src-address-list=blocklist action=drop comment="Tor Node List (dan.me.uk)"
/ip firewall filter add chain=forward dst-address-list=blocklist action=drop comment="Tor Node List (dan.me.uk)"

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