mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-02-02 22:30:01 +00:00
24 lines
334 B
Plaintext
24 lines
334 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 {{ t.links["L"]["dest"]["ipv6"].ip }} as 2;
|
|
neighbor {{ t.links["L"]["src"]["ipv6"].ip }} as 1;
|
|
ipv6 {
|
|
import all;
|
|
export none;
|
|
};
|
|
}
|