I am sorry if I am bringing this question again since I have been away from BIRD community for awhile. Can we show BGP “received-routes” command in BIRD right now? I understand the latest release is v1.4.2.
Back in 2012, one suggestion to do it is to build up a table that receives all BGP routes and then do the filtering under pipe as per following which I haven’t tried. I hope we do not need to
do this now.
<snip>
table t;
protocol bgp {
table t;
import all;
export all;
...
}
protocol pipe {
peer table t;
import < here goes filters for BGP
export < here goes filters for BGP
}
<snip>
Thanks,
Jimmy