1
0

hosts/carbon: Enable DHCPv6PD

This commit is contained in:
clerie 2024-08-15 19:21:29 +02:00
parent 1157038525
commit df2acebfef
Signed by: clerie
GPG Key ID: BD9F56480870BAD2

View File

@ -57,4 +57,23 @@
ip46tables -t mangle -A forward-mangle -p tcp -m tcp --tcp-flags SYN,RST SYN -j TCPMSS --set-mss 1416
'';
networking.interfaces.net-heimnetz.useDHCP = true;
networking.interfaces.ppp-dtagdsl.useDHCP = true;
networking.dhcpcd = {
enable = true;
allowInterfaces = [
"net-heimnetz"
"ppp-dtagdsl"
];
wait = "ipv6";
extraConfig = ''
ipv6only
noipv6rs
interface ppp-dtagdsl
ipv6rs
ia_pd 1/::/56 net-heimnetz/201/64
'';
};
}