1
0

hosts/carbon: Remove static IPv6 addressing

This commit is contained in:
2024-08-15 19:40:37 +02:00
parent ae4de7f03a
commit 60376e7688
3 changed files with 12 additions and 5 deletions

View File

@@ -14,7 +14,6 @@
networking.interfaces."net-heimnetz".ipv6.addresses = [
{ address = "fe80::1"; prefixLength = 64; }
{ address = "fd00:152:152:4::1"; prefixLength = 64; }
{ address = "2001:4cd8:100:1337::1"; prefixLength = 64; } # public IPs for local network
];
networking.interfaces."net-heimnetz".ipv4.addresses = [
{ address = "10.152.4.1"; prefixLength = 24; }
@@ -23,7 +22,10 @@
services.radvd.config = ''
interface net-heimnetz {
AdvSendAdvert on;
prefix 2001:4cd8:100:1337::/64 {};
prefix ::/64 {
AdvValidLifetime 60;
AdvPreferredLifetime 30;
};
RDNSS fd00:152:152::1 {};
DNSSL net.clerie.de {};
};