1
0

profiles/ds-lite: Connect to Netcologne with PPP DS-Lite

This commit is contained in:
2025-10-27 21:26:28 +01:00
parent 44afbff445
commit f3629c2653
10 changed files with 307 additions and 1 deletions

View File

@@ -6,6 +6,7 @@
./hardware-configuration.nix
./dns.nix
./ds-lite-ncfttb.nix
./mdns.nix
./net-dsl.nix
./net-gastnetz.nix
@@ -16,7 +17,7 @@
./net-printer.nix
./net-voip.nix
./ntp.nix
./ppp.nix
./ppp-ncfttb.nix
./scan-to-gpg.nix
./wg-clerie.nix
];

View File

@@ -0,0 +1,18 @@
{ ... }:
{
profiles.clerie.ds-lite = {
enable = true;
wanInterfaceName = "ppp-ncfttb";
tunnelInterfaceName = "ds-lite-ncfttb";
lanInterfaces = [
{
name = "net-heimnetz";
sla_id = 201;
prefix_len = 64;
}
];
};
}