liminix/tests/pppoe/configuration.nix

67 lines
1.6 KiB
Nix
Raw Normal View History

2022-09-25 10:54:31 +00:00
{ config, pkgs, ... } :
let
2022-09-26 11:55:10 +00:00
inherit (pkgs.liminix.networking) interface address pppoe route;
2022-09-25 10:54:31 +00:00
inherit (pkgs.liminix.services) oneshot longrun bundle target output;
in rec {
services.loopback =
let iface = interface { type = "loopback"; device = "lo";};
in bundle {
name = "loopback";
contents = [
(address iface { family = "inet4"; address ="127.0.0.1"; prefixLength = 8;})
(address iface { family = "inet6"; address ="::1"; prefixLength = 128;})
2022-09-25 10:54:31 +00:00
];
};
kernel.config = {
"IKCONFIG_PROC" = "y";
2022-09-25 10:54:31 +00:00
"PPP" = "y";
"PPPOE" = "y";
"PPPOL2TP" = "y";
"PPP_ASYNC" = "y";
"PPP_BSDCOMP" = "y";
"PPP_DEFLATE" = "y";
"PPP_MPPE" = "y";
"PPP_SYNC_TTY" = "y";
};
2022-09-25 10:54:31 +00:00
services.pppoe =
let iface = interface { type = "hardware"; device = "eth0"; };
in pppoe iface {
ppp-options = [
"debug" "+ipv6" "noauth"
"name" "db123@a.1"
"password" "NotReallyTheSecret"
];
};
2022-09-25 10:54:31 +00:00
2022-09-26 11:55:10 +00:00
services.defaultroute4 = route {
name = "defautlrote";
via = "$(cat ${output services.pppoe "address"})";
target = "default";
dependencies = [ services.pppoe ];
};
services.packet_forwarding =
let
iface = services.pppoe;
filename = "/proc/sys/net/ipv4/conf/$(cat ${output iface "ifname"})/forwarding";
2022-09-25 10:54:31 +00:00
in oneshot {
2022-09-26 11:55:10 +00:00
name = "let-the-ip-flow";
up = "echo 1 > ${filename}";
down = "echo 0 > ${filename}";
2022-09-25 10:54:31 +00:00
dependencies = [iface];
};
services.default = target {
name = "default";
2022-09-26 11:55:10 +00:00
contents = with services; [
loopback
defaultroute4
packet_forwarding
];
2022-09-25 10:54:31 +00:00
};
defaultProfile.packages = [ pkgs.hello ] ;
2022-09-25 10:54:31 +00:00
}