grc/examples/bird2/multiprotocol_client.conf
2019-01-27 16:14:23 +00:00

36 lines
730 B
Plaintext

##########################################################################
#
# Bird2 Multiprotocol Route Collector Client Example
#
##########################################################################
protocol bgp ROUTE_COLLECTOR
{
local as ***YOUR_AS***;
neighbor fd42:4242:2601:ac12::1 as 4242422602;
multihop;
ipv4 {
# import nothing, export everything
import none;
export all;
# export multiple paths to same destination
add paths tx;
};
ipv6 {
# import nothing, export everything
import none;
export all;
# export multiple paths to same destination
add paths tx;
};
}
##########################################################################
# end of file