2023-02-26 00:12:55 +01:00
|
|
|
# This is not part of Liminix per se. This is my "scratchpad"
|
|
|
|
# configuration for the device I'm testing with.
|
|
|
|
#
|
|
|
|
# Parts of it do do things that Liminix eventually needs to do, but
|
|
|
|
# don't look in here for solutions - just for identifying the
|
|
|
|
# problems.
|
|
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, lib, ... } :
|
|
|
|
let
|
|
|
|
secrets = import ./rotuer-secrets.nix;
|
|
|
|
inherit (pkgs.liminix.networking)
|
|
|
|
address
|
|
|
|
interface
|
|
|
|
route;
|
|
|
|
inherit (pkgs.liminix.services) oneshot longrun bundle target;
|
|
|
|
inherit (pkgs)
|
2023-03-04 01:39:54 +01:00
|
|
|
dropbear
|
2023-03-01 18:55:52 +01:00
|
|
|
ifwait
|
2023-04-23 19:22:39 +02:00
|
|
|
writeText
|
2023-05-30 19:20:14 +02:00
|
|
|
writeFennelScript
|
2023-03-03 21:07:39 +01:00
|
|
|
serviceFns;
|
2023-07-20 12:28:45 +02:00
|
|
|
svc = config.system.service;
|
2023-07-23 00:37:01 +02:00
|
|
|
wirelessConfig = {
|
|
|
|
country_code = "GB";
|
|
|
|
inherit (secrets) wpa_passphrase;
|
|
|
|
auth_algs = 1; # 1=wpa2, 2=wep, 3=both
|
|
|
|
wpa = 2; # 1=wpa, 2=wpa2, 3=both
|
|
|
|
wpa_key_mgmt = "WPA-PSK";
|
|
|
|
wpa_pairwise = "TKIP CCMP"; # auth for wpa (may not need this?)
|
|
|
|
rsn_pairwise = "CCMP"; # auth for wpa2
|
|
|
|
wmm_enabled = 1;
|
|
|
|
};
|
|
|
|
|
2023-02-26 00:12:55 +01:00
|
|
|
in rec {
|
|
|
|
boot = {
|
|
|
|
tftp = {
|
2023-04-24 00:29:53 +02:00
|
|
|
freeSpaceBytes = 3 * 1024 * 1024;
|
2023-02-26 00:12:55 +01:00
|
|
|
serverip = "10.0.0.1";
|
|
|
|
ipaddr = "10.0.0.8";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
imports = [
|
2023-04-23 13:58:51 +02:00
|
|
|
../modules/wlan.nix
|
2023-05-16 21:13:46 +02:00
|
|
|
../modules/standard.nix
|
2023-07-14 22:08:33 +02:00
|
|
|
../modules/ppp
|
2023-07-14 23:53:25 +02:00
|
|
|
../modules/dnsmasq
|
2023-07-16 17:55:50 +02:00
|
|
|
../modules/firewall
|
2023-07-16 18:50:06 +02:00
|
|
|
../modules/hostapd
|
2023-07-20 12:46:19 +02:00
|
|
|
../modules/bridge
|
2023-07-23 00:22:45 +02:00
|
|
|
../modules/ntp
|
2023-08-10 23:53:21 +02:00
|
|
|
../modules/ssh
|
2023-02-26 00:12:55 +01:00
|
|
|
];
|
2023-04-23 13:58:51 +02:00
|
|
|
rootfsType = "jffs2";
|
2023-05-20 23:34:57 +02:00
|
|
|
hostname = "rotuer";
|
2023-02-26 00:12:55 +01:00
|
|
|
|
2023-08-05 13:21:18 +02:00
|
|
|
services.hostap = svc.hostapd.build {
|
2023-07-16 18:50:06 +02:00
|
|
|
interface = config.hardware.networkInterfaces.wlan_24;
|
2023-02-26 00:12:55 +01:00
|
|
|
params = {
|
|
|
|
ssid = "liminix";
|
|
|
|
hw_mode="g";
|
|
|
|
channel = "2";
|
|
|
|
ieee80211n = 1;
|
2023-07-23 00:37:01 +02:00
|
|
|
} // wirelessConfig;
|
2023-02-26 00:12:55 +01:00
|
|
|
};
|
|
|
|
|
2023-08-05 13:21:18 +02:00
|
|
|
services.hostap5 = svc.hostapd.build {
|
2023-07-16 18:50:06 +02:00
|
|
|
interface = config.hardware.networkInterfaces.wlan_5;
|
2023-03-01 23:24:58 +01:00
|
|
|
params = rec {
|
|
|
|
ssid = "liminix_5";
|
|
|
|
hw_mode="a";
|
|
|
|
channel = 36;
|
|
|
|
ht_capab = "[HT40+]";
|
|
|
|
vht_oper_chwidth = 1;
|
|
|
|
vht_oper_centr_freq_seg0_idx = channel + 6;
|
|
|
|
ieee80211ac = 1;
|
2023-07-23 00:37:01 +02:00
|
|
|
} // wirelessConfig;
|
2023-03-01 23:24:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
services.int =
|
2023-08-16 20:44:00 +02:00
|
|
|
let iface = svc.bridge.build {
|
|
|
|
ifname = "int";
|
|
|
|
members = with config.hardware.networkInterfaces; [
|
|
|
|
wlan_24 lan wlan_5
|
|
|
|
];
|
|
|
|
};
|
2023-03-01 23:24:58 +01:00
|
|
|
in address iface {
|
|
|
|
family = "inet4"; address ="10.8.0.1"; prefixLength = 16;
|
2023-03-01 18:55:52 +01:00
|
|
|
};
|
2023-03-01 23:24:58 +01:00
|
|
|
|
2023-08-05 15:16:54 +02:00
|
|
|
services.ntp = svc.ntp.build {
|
2023-07-23 00:22:45 +02:00
|
|
|
pools = { "pool.ntp.org" = ["iburst"]; };
|
|
|
|
makestep = { threshold = 1.0; limit = 3; };
|
|
|
|
};
|
2023-04-23 19:22:39 +02:00
|
|
|
|
2023-08-10 23:53:21 +02:00
|
|
|
services.sshd = svc.ssh.build { };
|
2023-03-04 01:39:54 +01:00
|
|
|
|
2023-05-20 23:48:30 +02:00
|
|
|
users.root = secrets.root;
|
2023-03-04 01:39:54 +01:00
|
|
|
|
2023-02-26 00:12:55 +01:00
|
|
|
services.dns =
|
2023-06-01 00:29:05 +02:00
|
|
|
let interface = services.int;
|
2023-08-04 21:39:29 +02:00
|
|
|
in svc.dnsmasq.build {
|
2023-02-26 00:12:55 +01:00
|
|
|
resolvconf = services.resolvconf;
|
2023-06-01 00:29:05 +02:00
|
|
|
inherit interface;
|
|
|
|
ranges = [
|
|
|
|
"10.8.0.10,10.8.0.240"
|
|
|
|
"::,constructor:${interface.device},ra-stateless"
|
|
|
|
];
|
2023-02-26 00:12:55 +01:00
|
|
|
domain = "fake.liminix.org";
|
|
|
|
};
|
|
|
|
|
2023-08-10 23:53:45 +02:00
|
|
|
services.wan = svc.pppoe.build {
|
2023-07-20 13:05:36 +02:00
|
|
|
interface = config.hardware.networkInterfaces.wan;
|
|
|
|
ppp-options = [
|
|
|
|
"debug" "+ipv6" "noauth"
|
|
|
|
"name" secrets.l2tp.name
|
|
|
|
"password" secrets.l2tp.password
|
|
|
|
];
|
|
|
|
};
|
2023-02-26 00:12:55 +01:00
|
|
|
|
|
|
|
services.resolvconf = oneshot rec {
|
|
|
|
dependencies = [ services.wan ];
|
|
|
|
name = "resolvconf";
|
|
|
|
up = ''
|
|
|
|
. ${serviceFns}
|
2023-03-04 00:06:18 +01:00
|
|
|
( in_outputs ${name}
|
2023-02-26 00:12:55 +01:00
|
|
|
echo "nameserver $(output ${services.wan} ns1)" > resolv.conf
|
|
|
|
echo "nameserver $(output ${services.wan} ns2)" >> resolv.conf
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
down = ''
|
|
|
|
rm -rf /run/service-state/${name}/
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
services.defaultroute4 = route {
|
2023-06-30 11:17:33 +02:00
|
|
|
name = "defaultroute4";
|
2023-02-26 00:12:55 +01:00
|
|
|
via = "$(output ${services.wan} address)";
|
|
|
|
target = "default";
|
|
|
|
dependencies = [ services.wan ];
|
|
|
|
};
|
|
|
|
|
2023-06-30 11:17:33 +02:00
|
|
|
services.defaultroute6 = route {
|
|
|
|
name = "defaultroute6";
|
|
|
|
via = "$(output ${services.wan} ipv6-peer-address)";
|
|
|
|
target = "default";
|
|
|
|
dev = "$(output ${services.wan} ifname)";
|
|
|
|
dependencies = [ services.wan ];
|
|
|
|
};
|
|
|
|
|
2023-08-05 13:07:35 +02:00
|
|
|
services.firewall = svc.firewall.build {
|
2023-07-16 18:04:01 +02:00
|
|
|
ruleset = import ./rotuer-firewall.nix;
|
|
|
|
};
|
2023-06-20 21:20:32 +02:00
|
|
|
|
2023-02-26 00:12:55 +01:00
|
|
|
services.packet_forwarding =
|
2023-06-28 23:31:01 +02:00
|
|
|
let
|
|
|
|
ip4 = "/proc/sys/net/ipv4/conf/all/forwarding";
|
|
|
|
ip6 = "/proc/sys/net/ipv6/conf/all/forwarding";
|
2023-02-26 00:12:55 +01:00
|
|
|
in oneshot {
|
|
|
|
name = "let-the-ip-flow";
|
|
|
|
up = ''
|
2023-06-28 23:31:01 +02:00
|
|
|
echo 1 > ${ip4}
|
|
|
|
echo 1 > ${ip6}
|
|
|
|
'';
|
|
|
|
down = ''
|
|
|
|
echo 0 > ${ip4};
|
|
|
|
echo 0 > ${ip6};
|
2023-02-26 00:12:55 +01:00
|
|
|
'';
|
2023-06-20 21:20:32 +02:00
|
|
|
dependencies = [ services.firewall ];
|
2023-02-26 00:12:55 +01:00
|
|
|
};
|
|
|
|
|
2023-05-25 00:01:50 +02:00
|
|
|
services.dhcp6 =
|
|
|
|
let
|
|
|
|
name = "dhcp6c.wan";
|
|
|
|
in longrun {
|
|
|
|
inherit name;
|
2023-05-26 19:36:44 +02:00
|
|
|
notification-fd = 10;
|
2023-05-25 00:01:50 +02:00
|
|
|
run = ''
|
2023-05-30 19:20:14 +02:00
|
|
|
export SERVICE_STATE=/run/service-state/${name}
|
2023-06-30 21:02:03 +02:00
|
|
|
${pkgs.odhcp6c}/bin/odhcp6c -s ${pkgs.odhcp-script} -e -v -p /run/${name}.pid -P 48 $(output ${services.wan} ifname)
|
2023-05-25 00:01:50 +02:00
|
|
|
)
|
|
|
|
'';
|
|
|
|
dependencies = [ services.wan ];
|
|
|
|
};
|
|
|
|
|
2023-06-01 00:29:05 +02:00
|
|
|
services.acquire-lan-prefix =
|
|
|
|
let script = pkgs.callPackage ./acquire-delegated-prefix.nix { };
|
|
|
|
in longrun {
|
|
|
|
name = "acquire-lan-prefix";
|
|
|
|
run = "${script} /run/service-state/dhcp6c.wan ${services.int.device}";
|
|
|
|
dependencies = [ services.dhcp6 ];
|
|
|
|
};
|
|
|
|
|
2023-07-09 00:07:07 +02:00
|
|
|
services.acquire-wan-address =
|
|
|
|
let script = pkgs.callPackage ./acquire-wan-address.nix { };
|
|
|
|
in longrun {
|
|
|
|
name = "acquire-wan-address";
|
|
|
|
run = "${script} /run/service-state/dhcp6c.wan $(output ${services.wan} ifname)";
|
|
|
|
dependencies = [ services.dhcp6 ];
|
|
|
|
};
|
|
|
|
|
2023-02-26 00:12:55 +01:00
|
|
|
services.default = target {
|
|
|
|
name = "default";
|
2023-05-20 23:34:57 +02:00
|
|
|
contents = with config.services; [
|
2023-03-07 23:02:24 +01:00
|
|
|
config.hardware.networkInterfaces.lo
|
2023-03-03 23:52:33 +01:00
|
|
|
config.hardware.networkInterfaces.lan
|
2023-03-01 23:24:58 +01:00
|
|
|
int
|
2023-02-26 00:12:55 +01:00
|
|
|
hostap
|
2023-03-01 23:24:58 +01:00
|
|
|
hostap5
|
2023-04-23 19:22:39 +02:00
|
|
|
ntp
|
2023-02-26 00:12:55 +01:00
|
|
|
defaultroute4
|
2023-06-30 11:17:33 +02:00
|
|
|
defaultroute6
|
2023-02-26 00:12:55 +01:00
|
|
|
packet_forwarding
|
|
|
|
dns
|
|
|
|
resolvconf
|
2023-03-04 01:39:54 +01:00
|
|
|
sshd
|
2023-05-20 23:34:57 +02:00
|
|
|
config.services.hostname
|
2023-05-25 00:01:50 +02:00
|
|
|
dhcp6
|
2023-06-01 00:29:05 +02:00
|
|
|
acquire-lan-prefix
|
2023-07-09 00:07:07 +02:00
|
|
|
acquire-wan-address
|
2023-02-26 00:12:55 +01:00
|
|
|
];
|
|
|
|
};
|
2023-06-20 21:13:59 +02:00
|
|
|
defaultProfile.packages = with pkgs; [
|
|
|
|
min-collect-garbage
|
|
|
|
];
|
2023-02-26 00:12:55 +01:00
|
|
|
}
|