Files
Denozordec 9fd9745723
CI / changes (push) Successful in 5s
CI / go (push) Successful in 20s
CI / openapi (push) Has been skipped
CI / bird2 (push) Successful in 16s
fix: update BGP configuration in test scenarios to use new IPv6 addresses
2026-04-04 01:39:36 +07:00

29 lines
413 B
Plaintext

# tags: peer, ipv4, ipv6, mixed
router id 192.0.2.1;
protocol device {
}
protocol direct {
ipv4;
ipv6;
}
protocol bgp peer_a {
local 192.0.2.1 as 65001;
neighbor 192.0.2.2 as 65002;
ipv4 {
import all;
export all;
};
}
protocol bgp peer_b {
local fd00:cafe::1 as 65001;
neighbor fd00:cafe::3 as 65003;
ipv6 {
import all;
export all;
};
}