40 lines
797 B
Plaintext
40 lines
797 B
Plaintext
##########################################################################
|
|
#
|
|
# Bird1 Route Collector Client Example
|
|
#
|
|
##########################################################################
|
|
|
|
# IPv4
|
|
protocol bgp ROUTE_COLLECTOR4
|
|
{
|
|
local as ***YOUR_AS***;
|
|
|
|
neighbor 172.20.129.165 as 4242422602;
|
|
multihop;
|
|
|
|
# import nothing, export everything
|
|
import none;
|
|
export all;
|
|
|
|
# export multiple paths to same destination
|
|
add paths tx;
|
|
}
|
|
|
|
# IPv6
|
|
protocol bgp ROUTE_COLLECTOR6
|
|
{
|
|
local as ***YOUR_AS***;
|
|
|
|
neighbor fd42:4242:2601:ac12::1 as 4242422602;
|
|
multihop;
|
|
|
|
# import nothing, export everything
|
|
import none;
|
|
export all;
|
|
|
|
# export multiple paths to same destination
|
|
add paths tx;
|
|
}
|
|
|
|
##########################################################################
|
|
# end of file |