2024-05-15 16:36:16 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
usb-modeswitch,
|
|
|
|
ppp,
|
|
|
|
lib,
|
|
|
|
svc,
|
|
|
|
uevent-watch,
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
apn,
|
|
|
|
username,
|
|
|
|
password,
|
|
|
|
authType,
|
2024-05-15 16:36:16 +00:00
|
|
|
}:
|
|
|
|
let
|
2024-06-29 21:59:27 +00:00
|
|
|
inherit (liminix.services) oneshot;
|
2024-05-15 16:36:16 +00:00
|
|
|
authTypeNum = if authType == "pap" then "1" else "2";
|
|
|
|
chat = lib.escapeShellArgs [
|
|
|
|
# Your usb modem thing might present as a tty that you run PPP
|
|
|
|
# over, or as a network device ("ndis" or "ncm"). The latter
|
|
|
|
# kind is to be preferred, at least in principle, because it's
|
|
|
|
# faster. This initialization sequence works for the Huawei
|
|
|
|
# E3372, and took much swearing: the error messages are *awful*
|
2025-02-10 21:55:08 +00:00
|
|
|
""
|
|
|
|
"AT"
|
|
|
|
"OK"
|
|
|
|
"ATZ"
|
2024-05-15 16:36:16 +00:00
|
|
|
# create PDP context
|
2025-02-10 21:55:08 +00:00
|
|
|
"OK"
|
|
|
|
"AT+CGDCONT=1,\"IP\",\"${apn}\""
|
2024-05-15 16:36:16 +00:00
|
|
|
# activate PDP context
|
2025-02-10 21:55:08 +00:00
|
|
|
"OK"
|
|
|
|
"AT+CGACT=1,1"
|
2024-05-15 16:36:16 +00:00
|
|
|
# setup username and password per requirements of sim provider.
|
|
|
|
# (caret is special to chat, so needs escaping in AT commands)
|
2025-02-10 21:55:08 +00:00
|
|
|
"OK"
|
|
|
|
"AT\\^AUTHDATA=1,${authTypeNum},\"\",\"${password}\",\"${username}\""
|
2024-05-15 16:36:16 +00:00
|
|
|
# start the thing (I am choosing to read this as "NDIS DialUP")
|
2025-02-10 21:55:08 +00:00
|
|
|
"OK"
|
|
|
|
"AT\\^NDISDUP=1,1"
|
2024-06-01 22:47:20 +00:00
|
|
|
"OK"
|
2024-05-15 16:36:16 +00:00
|
|
|
];
|
2024-06-11 13:02:48 +00:00
|
|
|
modeswitch = oneshot rec {
|
2024-05-26 16:43:25 +00:00
|
|
|
name = "modem-modeswitch";
|
2025-02-10 21:55:08 +00:00
|
|
|
controller = (
|
|
|
|
svc.uevent-rule.build {
|
|
|
|
serviceName = name;
|
|
|
|
terms = {
|
|
|
|
devtype = "usb_device";
|
|
|
|
product = "12d1/14fe/102";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
2024-05-15 16:36:16 +00:00
|
|
|
up = ''
|
|
|
|
${usb-modeswitch}/bin/usb_modeswitch -v 12d1 -p 14fe --huawei-new-mode
|
|
|
|
'';
|
2024-05-26 16:43:25 +00:00
|
|
|
};
|
2024-06-11 13:02:48 +00:00
|
|
|
atz = oneshot rec {
|
2024-05-26 16:43:25 +00:00
|
|
|
name = "modem-atz";
|
2024-07-08 18:28:57 +00:00
|
|
|
# atz does not depend on modeswitch because modeswitch service
|
|
|
|
# is only running when the stick is in the wrong mode
|
|
|
|
dependencies = [ modeswitch.controller ];
|
|
|
|
buildInputs = [ modeswitch ];
|
2025-02-10 21:55:08 +00:00
|
|
|
controller = (
|
|
|
|
svc.uevent-rule.build {
|
|
|
|
serviceName = name;
|
|
|
|
terms = {
|
|
|
|
subsystem = "tty";
|
|
|
|
attrs = {
|
|
|
|
idVendor = "12d1";
|
|
|
|
idProduct = "1506";
|
|
|
|
};
|
2024-06-11 13:02:48 +00:00
|
|
|
};
|
2025-02-10 21:55:08 +00:00
|
|
|
symlink = "/dev/modem";
|
|
|
|
}
|
|
|
|
);
|
2024-05-26 16:43:25 +00:00
|
|
|
up = ''
|
|
|
|
ls -l /dev/modem
|
2024-06-11 13:02:48 +00:00
|
|
|
test -L /dev/modem || exit 1
|
2024-05-26 16:43:25 +00:00
|
|
|
${ppp}/bin/chat -s -v ${chat} 0<>/dev/modem 1>&0
|
|
|
|
'';
|
|
|
|
down = "${ppp}/bin/chat -v '' ATZ OK 0<>/dev/modem 1>&0";
|
|
|
|
};
|
2024-06-11 13:02:48 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
svc.network.link.build {
|
2024-05-15 16:36:16 +00:00
|
|
|
ifname = "wwan0";
|
2024-06-11 13:02:48 +00:00
|
|
|
dependencies = [ atz ];
|
2024-05-15 16:36:16 +00:00
|
|
|
}
|