mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-01-05 08:31:53 +00:00
6ee70f196a
Checking is done inline and asynchronously, every log message should be explicitly expected, otherwise it's reported. It also has an implicit timeout of 1s for the log message to appear, otherwise it fails as well.
24 lines
346 B
Plaintext
24 lines
346 B
Plaintext
log "{{ m.logs[0].name }}" 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 {{ t.links["L"]["dest"]["ipv6"].ip }} as 2;
|
|
neighbor {{ t.links["L"]["src"]["ipv6"].ip }} as 1;
|
|
ipv6 {
|
|
import all;
|
|
export none;
|
|
};
|
|
}
|