0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-03 15:41:54 +00:00
bird/flock/bgp-secondary/bird_dest.conf
Maria Matejka 5aaa8ea226 Flock tests: create simple environment
This is a first try on adapting Flock on cf-bgp-secondary
from bird-tools.
2024-07-10 12:45:51 +02:00

24 lines
318 B
Plaintext

log "bird.log" all;
router id 2;
ipv6 table master6;
protocol device {
scan time 10;
}
protocol kernel kernel6 {
scan time 10;
ipv6 { export all; };
}
protocol bgp LINK {
local {{ link["dest"]["ipv6"].ip }} as 2;
neighbor {{ link["src"]["ipv6"].ip }} as 1;
ipv6 {
import all;
export none;
};
}