Global Route Collector
The Global Route Collector (GRC) provides a real time view of routing and peering across DN42 and can be used to generate maps, stats or just query how routes are being propagated across the network.
Technically the GRC is a bird instance that anyone can peer with, it imports all routes whilst exporting none and provides a number of interfaces for querying the route data.
Data from the GRC is used to generate some of the DN42 Maps (see the Internal Services page).
Peering with the collector
The collector uses the dynamic peering capability in Bird2 to allow anyone to peer with it without any new server side configuration being required. The collector relies on users peering with it across the network so the more peers the better and the more comprehensive the collector data will be.
Details | |
---|---|
ASN | AS4242422602 |
Hostname | collector.dn42 |
IPv4 Address | 172.20.129.4 |
IPv6 Address | fd42:4242:2601:ac12::1 |
BGP Configuration
- Unlike normal DN42 peerings, you must enable multihop to peer with the collector
- The collector supports Multiprotocol BGP, so you don't need to configure separate IPv4 and IPv6 sessions
- Please enable the Add Paths BGP extension to export all available routes
Example bird2 config:
protocol bgp ROUTE_COLLECTOR
{
local as ***YOUR_ASN***;
neighbor fd42:4242:2601:ac12::1 as 4242422602;
# enable multihop as the collector is not locally connected
multihop;
ipv4 {
# export all available paths to the collector
add paths tx;
# import/export filters
import none;
export filter {
# export all valid routes
if ( is_valid_network() && source ~ [ RTS_STATIC, RTS_BGP ] )
then {
accept;
}
reject;
};
};
ipv6 {
# export all available paths to the collector
add paths tx;
# import/export filters
import none;
export filter {
# export all valid routes
if ( is_valid_network_v6() && source ~ [ RTS_STATIC, RTS_BGP ] )
then {
accept;
}
reject;
};
};
}
Querying the collector
Looking Glass
The collector runs a looking glass based on bird-lg-go.
MRT Dumps
MRT Dumps are produced by the collector every 10 minutes. Bird produces MRT dumps corresponding to tables, so two separate dumps are created, one for IPv4 (master4) and one for IPv6 (master6). The 10 minutes dumps are available for one week before being reduced down to one a day.
The latest dumps can always be found at the following URLs:
Prometheus Metrics
The collector runs bird_exporter and prometheus style metrics are available at the following URL:
SSH Interface
The collector bird instance can be queried directly using a birdc shell.
$ ssh [email protected]
------------------------------------
* DN42 Global Route Collector *
------------------------------------
* http://collector.dn42/
This service provides a bird2 shell
for querying the route collector
Be nice, access is logged and
abuse will not be tolerated
------------------------------------
BIRD burble-2.0.8-210322-1-ge6133456 ready.
Access restricted
bird> show route count
bird> 297441 of 297441 routes for 502 networks in table master4
286007 of 286007 routes for 427 networks in table master6
1437 of 1437 routes for 1437 networks in table dn42_roa4
1231 of 1231 routes for 1231 networks in table dn42_roa6
Total: 586116 of 586116 routes for 3597 networks in 4 tables
bird>