nanopi: optimise routing
Alan Pearce alan@alanpearce.eu
Fri, 31 May 2024 00:22:43 +0200
1 files changed, 20 insertions(+), 0 deletions(-)
jump to
M system/nanopi.nix → system/nanopi.nix
@@ -347,6 +347,7 @@ IPForward = "yes"; }; dhcpV4Config = { UseDNS = false; + UseRoutes = false; SendHostname = false; SendRelease = false; UseHostname = false; @@ -362,6 +363,7 @@ UplinkInterface = ":self"; }; ipv6AcceptRAConfig = { UseDNS = false; + UseGateway = false; }; addresses = [ { @@ -370,6 +372,24 @@ Address = "192.168.100.10/24"; # Peer = "192.168.100.1/32"; Label = "wan0:0"; # Scope = "link"; + }; + } + ]; + routes = [ + { + routeConfig = { + Gateway = "_dhcp4"; + QuickAck = true; + InitialCongestionWindow = 30; + InitialAdvertisedReceiveWindow = 30; + }; + } + { + routeConfig = { + Gateway = "_ipv6ra"; + QuickAck = true; + InitialCongestionWindow = 30; + InitialAdvertisedReceiveWindow = 30; }; } ];