mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
nixos/tests: Fix delegated prefix in prefix-delegation test
Prefix/pool validation since kea 2.4.0 is now complaining about overlapping and not properly aligned prefix lengths.
This commit is contained in:
parent
cf2d3129fa
commit
048b14d40f
1 changed files with 3 additions and 3 deletions
|
@ -67,14 +67,14 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
|
||||||
interfaces-config.interfaces = [ "eth1" ];
|
interfaces-config.interfaces = [ "eth1" ];
|
||||||
subnet6 = [ {
|
subnet6 = [ {
|
||||||
interface = "eth1";
|
interface = "eth1";
|
||||||
subnet = "2001:DB8:F::/36";
|
subnet = "2001:DB8::/32";
|
||||||
pd-pools = [ {
|
pd-pools = [ {
|
||||||
prefix = "2001:DB8:F::";
|
prefix = "2001:DB8:1000::";
|
||||||
prefix-len = 36;
|
prefix-len = 36;
|
||||||
delegated-len = 48;
|
delegated-len = 48;
|
||||||
} ];
|
} ];
|
||||||
pools = [ {
|
pools = [ {
|
||||||
pool = "2001:DB8:0000:0000:FFFF::-2001:DB8:0000:0000:FFFF::FFFF";
|
pool = "2001:DB8:0000:0000::-2001:DB8:0FFF:FFFF::FFFF";
|
||||||
} ];
|
} ];
|
||||||
} ];
|
} ];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue