From 46ed8f01990a6a7374d1049bdb6ca29a9a2d57d7 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Thu, 27 Mar 2025 20:23:26 +0000 Subject: [PATCH] add bandwidth as a service option for ppp (l2tp, pppoe) --- examples/rotuer.nix | 1 + modules/ppp/common.nix | 3 ++- modules/ppp/default.nix | 5 +++++ modules/ppp/l2tp.nix | 2 ++ modules/ppp/pppoe.nix | 2 ++ 5 files changed, 12 insertions(+), 1 deletion(-) diff --git a/examples/rotuer.nix b/examples/rotuer.nix index d9aec11..875baf7 100644 --- a/examples/rotuer.nix +++ b/examples/rotuer.nix @@ -71,6 +71,7 @@ rec { interface = config.hardware.networkInterfaces.wan; username = secrets.l2tp.name; password = secrets.l2tp.password; + bandwidth = 70 * 1000 * 1000; }; # once the wan has ipv4 connnectivity, should we run dhcp6 # client to potentially get an address range ("prefix diff --git a/modules/ppp/common.nix b/modules/ppp/common.nix index 63cf78b..35a36c2 100644 --- a/modules/ppp/common.nix +++ b/modules/ppp/common.nix @@ -13,6 +13,7 @@ username, password, lcpEcho, + bandwidth, ppp-options, dependencies ? [ ], }: @@ -115,7 +116,7 @@ let ${command} ''; notification-fd = 10; -# properties.bandwidth = 3 * 1000 * 1000; + properties.bandwidth = bandwidth; timeout-up = if lcpEcho.failure != null then (10 + lcpEcho.failure * lcpEcho.interval) * 1000 else 60 * 1000; inherit dependencies; diff --git a/modules/ppp/default.nix b/modules/ppp/default.nix index c4b7407..b7d82e2 100644 --- a/modules/ppp/default.nix +++ b/modules/ppp/default.nix @@ -56,6 +56,11 @@ in default = null; description = "password"; }; + bandwidth = mkOption { + type = types.nullOr (types.int); + default = null; + description = "approximate bandwidth in bytes/second. Used to calculate rate limits for ICMP"; + }; lcpEcho = { adaptive = mkOption { description = "send LCP echo-request frames only if no traffic was received from the peer since the last echo-request was sent"; diff --git a/modules/ppp/l2tp.nix b/modules/ppp/l2tp.nix index cd7e6a8..4154609 100644 --- a/modules/ppp/l2tp.nix +++ b/modules/ppp/l2tp.nix @@ -13,6 +13,7 @@ lns, ppp-options, lcpEcho, + bandwidth, username, password, debug, @@ -40,6 +41,7 @@ common { username password lcpEcho + bandwidth ppp-options ; command = '' diff --git a/modules/ppp/pppoe.nix b/modules/ppp/pppoe.nix index 714111a..ab6a582 100644 --- a/modules/ppp/pppoe.nix +++ b/modules/ppp/pppoe.nix @@ -13,6 +13,7 @@ interface, ppp-options, lcpEcho, + bandwidth, username, password, debug, @@ -31,6 +32,7 @@ common { username password lcpEcho + bandwidth ppp-options ; command = ''