{% extends "skeleton.html" %} {% block title %}Tor Relays :: Networks{% endblock %} {% block body %}

Home :: Networks

The set of all ({{ relays.json['sorted']['as']|length }}) recognized networks running at least one relay. This data is onionoo-derived and might be out of date with respect to other sources.

{% for k, v in relays.json['sorted']['as'].items()|sort(attribute='1.bw', reverse=True) %} {% if v['bw'] > 1000000 %} {% set obs_bandwidth = '%s %s'|format((v['bw'] / 1000000)|round(2, 'common'), 'MB/s') %} {% else %} {% set obs_bandwidth = '%s %s'|format((v['bw'] / 1000)|round(2, 'common'), 'KB/s') %}{% endif %} {% if v['as_name'] %} {% else %} {% endif %} {% if v['country'] %} {% else %} {% endif %} {% endfor %}
AS Number AS Name Country Bandwidth Exit Count Middle Count
{{ k|escape }}{{ v['as_name']|truncate(20)|escape }}Unknown{{ v['country_name']|escape }}X{{ obs_bandwidth }} {{ v['exit_count'] }} {{ v['middle_count'] }}
{% endblock %}