2021-07-01 17:16:05 +02:00
|
|
|
# Renaming network interfaces {#sec-rename-ifs}
|
|
|
|
|
|
|
|
NixOS uses the udev [predictable naming
|
|
|
|
scheme](https://systemd.io/PREDICTABLE_INTERFACE_NAMES/) to assign names
|
|
|
|
to network interfaces. This means that by default cards are not given
|
|
|
|
the traditional names like `eth0` or `eth1`, whose order can change
|
|
|
|
unpredictably across reboots. Instead, relying on physical locations and
|
|
|
|
firmware information, the scheme produces names like `ens1`, `enp2s0`,
|
|
|
|
etc.
|
|
|
|
|
|
|
|
These names are predictable but less memorable and not necessarily
|
|
|
|
stable: for example installing new hardware or changing firmware
|
|
|
|
settings can result in a [name
|
|
|
|
change](https://github.com/systemd/systemd/issues/3715#issue-165347602).
|
|
|
|
If this is undesirable, for example if you have a single ethernet card,
|
|
|
|
you can revert to the traditional scheme by setting
|
2021-07-04 03:56:26 +02:00
|
|
|
[](#opt-networking.usePredictableInterfaceNames)
|
2021-07-01 17:16:05 +02:00
|
|
|
to `false`.
|
|
|
|
|
|
|
|
## Assigning custom names {#sec-custom-ifnames}
|
|
|
|
|
|
|
|
In case there are multiple interfaces of the same type, it's better to
|
|
|
|
assign custom names based on the device hardware address. For example,
|
|
|
|
we assign the name `wan` to the interface with MAC address
|
|
|
|
`52:54:00:12:01:01` using a netword link unit:
|
|
|
|
|
|
|
|
```nix
|
2024-03-27 19:10:27 +01:00
|
|
|
{
|
|
|
|
systemd.network.links."10-wan" = {
|
|
|
|
matchConfig.PermanentMACAddress = "52:54:00:12:01:01";
|
|
|
|
linkConfig.Name = "wan";
|
|
|
|
};
|
|
|
|
}
|
2021-07-01 17:16:05 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Note that links are directly read by udev, *not networkd*, and will work
|
|
|
|
even if networkd is disabled.
|
|
|
|
|
|
|
|
Alternatively, we can use a plain old udev rule:
|
|
|
|
|
|
|
|
```nix
|
2024-03-27 19:10:27 +01:00
|
|
|
{
|
|
|
|
boot.initrd.services.udev.rules = ''
|
|
|
|
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", \
|
|
|
|
ATTR{address}=="52:54:00:12:01:01", KERNEL=="eth*", NAME="wan"
|
|
|
|
'';
|
|
|
|
}
|
2021-07-01 17:16:05 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
::: {.warning}
|
|
|
|
The rule must be installed in the initrd using
|
2023-06-27 14:36:49 +02:00
|
|
|
`boot.initrd.services.udev.rules`, not the usual `services.udev.extraRules`
|
2021-07-01 17:16:05 +02:00
|
|
|
option. This is to avoid race conditions with other programs controlling
|
|
|
|
the interface.
|
|
|
|
:::
|