Fix prefixLength for gateway6 route (#73)

This commit is contained in:
Johannes Spangenberg 2021-05-04 08:32:42 +02:00 committed by GitHub
parent 0fd9469d05
commit 58edeb3933
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,7 +109,7 @@ EOF
$a"; done) $a"; done)
]; ];
ipv4.routes = [ { address = "${gateway}"; prefixLength = 32; } ]; ipv4.routes = [ { address = "${gateway}"; prefixLength = 32; } ];
ipv6.routes = [ { address = "${gateway6}"; prefixLength = 32; } ]; ipv6.routes = [ { address = "${gateway6}"; prefixLength = 128; } ];
}; };
$interfaces1 $interfaces1
}; };