mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-18 17:11:39 +01:00
better ipv6 config
This commit is contained in:
parent
c9686ca54e
commit
1999030ee2
3 changed files with 14 additions and 5 deletions
|
@ -1,5 +1,14 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.radvd = {
|
||||
enable = true;
|
||||
config = ''
|
||||
interface ens3 {
|
||||
AdvSendAdvert on;
|
||||
prefix 2a01:4f8:c012:49de::/64 {};
|
||||
};
|
||||
'';
|
||||
};
|
||||
networking = {
|
||||
hostName = "falkenstein-1";
|
||||
useNetworkd = true;
|
||||
|
@ -14,10 +23,8 @@
|
|||
networks."10-wired" = {
|
||||
matchConfig.Name = "ens3";
|
||||
networkConfig = {
|
||||
DHCP = "ipv4";
|
||||
DHCP = "yes";
|
||||
IPv6AcceptRA = "yes";
|
||||
Address = "2a01:4f8:c012:49de::1/64";
|
||||
Gateway = "fe80::1";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
recommendedProxySettings = true;
|
||||
recommendedGzipSettings = true;
|
||||
recommendedOptimisation = true;
|
||||
|
||||
|
||||
virtualHosts."rfive.de" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
|
|
|
@ -46,6 +46,8 @@
|
|||
linkConfig.RequiredForOnline = false;
|
||||
networkConfig = {
|
||||
DHCP = "yes";
|
||||
IPv6AcceptRA = "yes";
|
||||
IPv6PrivacyExtensions = "yes";
|
||||
};
|
||||
dhcpV4Config = {
|
||||
RouteMetric = 10;
|
||||
|
@ -75,7 +77,7 @@
|
|||
DHCP = "yes";
|
||||
IgnoreCarrierLoss = "3s";
|
||||
IPv6AcceptRA = "yes";
|
||||
#IPv6PrefixDelegation = "dhcpv6";
|
||||
IPv6PrivacyExtensions = "yes";
|
||||
};
|
||||
dhcpV4Config = {
|
||||
RouteMetric = 20;
|
||||
|
|
Loading…
Reference in a new issue