如何在我的 Ubuntu 18.04 中安装以太网?

如何在我的 Ubuntu 18.04 中安装以太网?

我想在我的 Ubuntu 中安装以太网,但是仍然出现如下错误消息:

tcpdump: eth0: No such device exists
(SIOCGIFHWADDR: No such device)



root@ubuntu:~# tcpdump -D
1.ens33 [Up, Running]
2.any (Pseudo-device that captures on all interfaces) [Up, Running]
3.lo [Up, Running, Loopback]
4.bluetooth0 (Bluetooth adapter number 0)
5.nflog (Linux netfilter log (NFLOG) interface)
6.nfqueue (Linux netfilter queue (NFQUEUE) interface)
7.usbmon1 (USB bus number 1)
8.usbmon2 (USB bus number 2)

我的 Ubuntu 中只有这些东西。

答案1

ens33 是您的以太网接口。它不再像以前一样被称为“eth0”。我不确定命名接口的算法是什么,但它们最终都是唯一的。

编辑:

man systemd.link

您的前缀为“ens”,这表明您的命名约定为“slot”。请参阅https://www.freedesktop.org/software/systemd/man/systemd.net-naming-scheme.html

(在页面上搜索“ID_NET_NAME_SLOT”)。

阅读本文还将解释您可能发现的除“ens”之外的其他设备名称前缀。例如,我的是“enp”,这意味着它是用“ID_NET_NAME_PATH”方法命名的。

相关内容