Page 3 of 3

Re: List of Trackers

Posted: Mon Jun 02, 2025 7:41 am
by lgillis
#!/usr/bin/env sh

### Query the online status of trackers from the I2Pd address book.

# Search with "awk" for all addresses with "tracker" in the name
# and convert them into an HTTP URL,
# each tracker found is queried individually in a loop,
# use "wget" instead of "ping" (spider = nothing is downloaded),
# and output the result.

awk -F ',' '/tracker/ {print "http://"$1}' /var/lib/i2pd/addressbook/addresses.csv | while read -r known
do
printf "Status Tracker: %s\n" "$known"
wget --spider --timeout=15 --tries=1 "$known"
case $? in
0) printf "Reachable (rc: %s)\n\n" "$?" ;;
*) printf "Out Of Reach (rc: %s)\n\n" "$?" ;;
esac
done

# TODO: The query is not correct. a) It only provides an initial indication of whether the parent site is currently accessible. b) The announce URL is not taken into account (sometimes it is “announce.php”, then it ends with “a” etc., it is not standardized). c) Timeout and tries may have to be adapted manually to the respective connection.
Here again the previously mentioned finished list, which is maintained by cumlord:
cumlord wrote: Fri Jan 10, 2025 9:55 pm http://simp.i2p/external_status/trackers.txt - tracker list seen in last week, one per line

Re: List of Trackers - Oct. 2023

Posted: Wed Jun 04, 2025 7:59 pm
by COMiX
We can add http://opentracker.fattydove.i2p/a to the list of working open trackers.
I don't know the owner, but the tracker works with qBitTorrent.

Re: List of Trackers - Oct. 2023

Posted: Fri Jun 06, 2025 6:29 pm
by cumlord
thanks, added it

Re: List of Trackers - Oct. 2023

Posted: Tue Jun 10, 2025 11:12 am
by provil
COMiX wrote: Wed Jun 04, 2025 7:59 pm We can add http://opentracker.fattydove.i2p/a to the list of working open trackers.
I don't know the owner, but the tracker works with qBitTorrent.
looks sketchy the website does not claim that it is a torrent tracker. there is nothing written on website about torrents or anything.

Re: List of Trackers - Oct. 2023

Posted: Tue Jun 10, 2025 7:09 pm
by COMiX