2023-08-27 22:45:27 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
lib,
|
2023-08-27 22:45:27 +00:00
|
|
|
}:
|
2023-11-26 23:15:28 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
ifname,
|
|
|
|
devpath ? null,
|
|
|
|
mtu,
|
|
|
|
}:
|
2023-11-26 23:15:28 +00:00
|
|
|
# if devpath is supplied, we rename the interface at that
|
|
|
|
# path to have the specified name.
|
2023-08-27 22:45:27 +00:00
|
|
|
let
|
2024-06-29 21:59:27 +00:00
|
|
|
inherit (liminix.services) oneshot;
|
2023-08-27 22:45:27 +00:00
|
|
|
name = "${ifname}.link";
|
2025-02-10 21:55:08 +00:00
|
|
|
rename =
|
|
|
|
if devpath != null then
|
|
|
|
''
|
|
|
|
oldname=$(cd /sys${devpath} && cd net/ && echo *)
|
|
|
|
ip link set ''${oldname} name ${ifname}
|
|
|
|
''
|
|
|
|
else
|
|
|
|
"";
|
|
|
|
in
|
|
|
|
oneshot {
|
2023-11-26 23:15:28 +00:00
|
|
|
inherit name;
|
|
|
|
up = ''
|
|
|
|
${rename}
|
|
|
|
${liminix.networking.ifup name ifname}
|
|
|
|
'';
|
2023-08-27 22:45:27 +00:00
|
|
|
down = "ip link set down dev ${ifname}";
|
|
|
|
}
|