Conclusão Parece que esta é a interface do meu sistema para um hub usb3 que eu tenho, usando o endereço MAC do dispositivo.
sudo udevadm info -q all -p /sys/class/net/enx9cebe80718e1
foi muito útil (obrigado @telcoM).
Eu acredito que essa confusão tenha algo a ver com systemd
/ udev
. (Instalações anteriores (Lubuntu) não se apresentaram assim.)
Seguindo a referência na resposta do @ Debian_yadav, Padrão de convenções de nomenclatura para interfaces Ethernet e Wi-Fi em máquinas Linux Eu encontrei o freedesktop. a entrada da organização no systemd e nos nomes da interface de rede previsível .
With systemd 197 we have added native support for a number of different naming policies into systemd/udevd proper and made a scheme similar to biosdevname's (but generally more powerful, and closer to kernel-internal device identification schemes) the default. The following different naming schemes for network interfaces are now supported by udev natively:
- Names incorporating Firmware/BIOS provided index numbers for on-board devices (example: eno1)
- Names incorporating Firmware/BIOS provided PCI Express hotplug slot index numbers (example: ens1)
- Names incorporating physical/geographical location of the connector of the hardware (example: enp2s0)
- Names incorporating the interfaces's MAC address (example: enx78e7d1ea46da)
- Classic, unpredictable kernel-native ethX naming (example: eth0)
By default, systemd v197 will now name interfaces following policy 1) if that information from the firmware is applicable and available, falling back to 2) if that information from the firmware is applicable and available, falling back to 3) if applicable, falling back to 5) in all other cases. Policy 4) is not used by default, but is available if the user chooses so.
Estranhamente, meu hub aciona a regra 4. Não sei por que - não me lembro de fazer isso (não sei como!).
EDIT acontece que não é o hub usb, é o adaptador USB / ethernet conectado a ele (com ou sem um cabo de rede conectado).
A mesma referência afirma que esses endereços / nomes são estáveis durante as reinicializações (o meu tratou um un / / re-plugging do hub), mas note alguns reclamam de instabilidade persistente.
Obrigado a todos.