USB 以太网适配器拒绝在 Ubuntu Server 上运行

USB 以太网适配器拒绝在 Ubuntu Server 上运行

操作系统:Ubuntu Server 20.04.5 LTS
硬件:配备 i7-6500U 和 16GB DDR4 1600 的笔记本电脑

所以我有这个 USB 以太网适配器“VMAX VIA100 USB3.0 转 RJ45”。它适用于除此设备之外的所有设备。我不知道该尝试什么了

信息:

• 执行lsusb命令 -

Bus 002 Device 002: ID 0bda:8153 Realtek Semiconductor Corp. RTL8153 Gigabit Ethernet Adapter

(适配器已被清楚检测到)

lsmod | grep r8152

   r8152                  69632  0
   mii                    20480  2 usbnet,r8152

lshw -class network

 *-network:0 DISABLED
       description: Ethernet interface
       physical id: 1
       bus info: usb@2:1
       logical name: enx00e04c07002e
       serial: 00:e0:4c:07:00:2e
       size: 1Gbit/s
       capacity: 1Gbit/s
       capabilities: ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8152 driverversion=v1.10.11 duplex=full link=no multicast=yes port=MII speed=1Gbit/s

sudo ip link set enx00e04c07002e up

  *-network:0
       description: Ethernet interface
       physical id: 1
       bus info: usb@2:1
       logical name: enx00e04c07002e
       serial: 00:e0:4c:07:00:2e
       size: 1Gbit/s
       capacity: 1Gbit/s
       capabilities: ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8152 driverversion=v1.10.11 duplex=full link=yes multicast=yes port=MII speed=1Gbit/s

它确实可以自行启用,但重启后又可以自行禁用。

cat /etc/netplan/*.yaml

# This is the network config written by 'subiquity'
network:
  version: 2
  wifis: {}
# This is the network config written by 'subiquity'
network:
  ethernets:
    enp0s31f6:
      dhcp4: true
  version: 2

我检查了以太网电缆,没有问题。我在网上找不到可行的解决方案。如能得到帮助,我将不胜感激。

答案1

所有最新的 Ubuntu 服务器版本的网络都是在 netplan 中配置的。请注意,您的相关以太网接口是 enx00e04c07002e。但是,您的 netplan 文件尝试配置 enp0s31f6。请修改文件以替换正确的接口;即:

# This is the network config written by 'subiquity'
network:
  ethernets:
    enx00e04c07002e:
      dhcp4: true
  version: 2

由于您显然没有使用 wifi,因此您可以安全地删除该节。

接下来是:

sudo netplan generate
sudo netplan apply

重启。一切就绪。

相关内容