获取 enp3s0 的硬件地址时出错

获取 enp3s0 的硬件地址时出错

我的 Ubuntu Server 17 未连接到我的网络(以太网)。

我尝试重新启动网络服务,但出现错误提示我运行

journalctl1 -xe

这表明错误

Error getting hardware address for enp3s0  
...  
Failed to start Raise network address

这是我的/etc/network/interfaces

source /etc/network/interfaces.d/*

auto lo
iface lo inet loopback

auto enp3s0
iface enp3s0 inet dhcp

我搜索了所有地方,但大多数人都建议将接口更改为使用 eth0,我也试过了,但没有解决问题,所以不知道还能尝试什么

$ ifconfig

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
  inet 127.0.0.1 netmask 255.0.0.0
  inet6 ::1 prefixlen 128 scopeid 0x10<host>
  loop txqueuelen 1000 (Local Loopback)
  RX packets 352 bytes 26304 (26.3 KB)
  RX errors 0 dropped 0 overruns 0 frame 0
  TX packets 352 bytes 26304 (26.3 KB)
  TX errors 0 dropped 0 overruns 0 frame 0 collisions 0

答案1

我的标有 的界面也出现了同样的错误p5p1

运行lshw -C network产生类似以下的输出(界面现在可以工作,因此一些细节会有所不同):

*-network
       description: Ethernet interface
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: p4p1
       version: 06
       serial: 18:67:b0:df:4e:68
       size: 1Gbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168e-3_0.0.4 03/27/12 ip=10.1.2.228 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
       resources: irq:27 ioport:e000(size=256) memory:f0004000-f0004fff memory:f0000000-f0003fff

相关行是logical name: p4p1。不知何故,网络配置为启动接口 p5p1,但操作系统将该设备识别为 p4p1。

我更新了 /etc/network/interfaces,将 p5p1 替换为 p4p1,然后重置了网络服务。接口没有出现问题。

相关内容