2024-05-11 21:48:06 +00:00
|
|
|
{
|
2024-09-03 21:57:45 +00:00
|
|
|
lib,
|
|
|
|
liminix,
|
|
|
|
output-template,
|
|
|
|
serviceFns,
|
|
|
|
svc,
|
|
|
|
writeAshScript,
|
|
|
|
writeText,
|
|
|
|
xl2tpd,
|
2025-02-10 21:55:08 +00:00
|
|
|
callPackage,
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
lns,
|
2024-08-21 22:10:28 +00:00
|
|
|
ppp-options,
|
|
|
|
lcpEcho,
|
2025-03-27 20:23:26 +00:00
|
|
|
bandwidth,
|
2024-08-21 22:10:28 +00:00
|
|
|
username,
|
|
|
|
password,
|
2025-02-10 21:55:08 +00:00
|
|
|
debug,
|
2024-08-21 22:10:28 +00:00
|
|
|
}:
|
2024-05-11 21:48:06 +00:00
|
|
|
let
|
|
|
|
name = "${lns}.l2tp";
|
2024-09-03 23:12:26 +00:00
|
|
|
common = callPackage ./common.nix { inherit svc; };
|
2024-08-21 22:10:28 +00:00
|
|
|
|
2024-05-11 21:48:06 +00:00
|
|
|
conf = writeText "xl2tpd.conf" ''
|
|
|
|
[lac upstream]
|
|
|
|
lns = ${lns}
|
|
|
|
require authentication = no
|
2024-08-21 22:10:28 +00:00
|
|
|
pppoptfile = /run/${name}/ppp-options
|
2024-05-11 21:48:06 +00:00
|
|
|
autodial = yes
|
2024-07-08 19:29:48 +00:00
|
|
|
redial = yes
|
|
|
|
redial timeout = 1
|
|
|
|
max redials = 2 # this gives 1 actual retry, as xl2tpd can't count
|
2024-05-11 21:48:06 +00:00
|
|
|
'';
|
2024-08-21 22:10:28 +00:00
|
|
|
control = "/run/${name}/control";
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
common {
|
|
|
|
inherit
|
|
|
|
name
|
|
|
|
debug
|
|
|
|
username
|
|
|
|
password
|
|
|
|
lcpEcho
|
2025-03-27 20:23:26 +00:00
|
|
|
bandwidth
|
2025-02-10 21:55:08 +00:00
|
|
|
ppp-options
|
|
|
|
;
|
2024-09-03 23:12:26 +00:00
|
|
|
command = ''
|
|
|
|
touch ${control}
|
|
|
|
exec ${xl2tpd}/bin/xl2tpd -D -p /run/${name}/${name}.pid -c ${conf} -C ${control}
|
|
|
|
'';
|
2024-05-11 21:48:06 +00:00
|
|
|
}
|