Skip to content

Dumping Routing Tables on BIRD

Italo Cunha edited this page Aug 18, 2020 · 1 revision

(This page contributed by @https://github.com/Hi0Rizvi)

Adding the following lines to the bird.conf file will dump the routing table in the given filename. It will periodically dump the routing table in every 300s in mrt format.

protocol mrt {
	table rtup;
	where source = RTS_BGP;
	filename "/dir/out.mrt";
	period 300;
}