1
0
mirror of https://git.burble.com/burble.dn42/grc.git synced 2024-05-12 03:55:05 +00:00
burble.dn42-grc/examples/bird2/multiprotocol_client.conf
2019-01-27 14:15:43 +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 4242422601;
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