Docker安装后连接问题

Docker安装后连接问题

我已经正常安装了 Docker,一切正常,但重新启动后,我丢失了网络(PCIe 无线适配器、有线连接,甚至 USB 网络共享)。我发现很多类似内容,但对我来说都不起作用。我甚至删除了完全 Docker但仍然有问题。我现在不知道 Docker 是否是问题所在,但这似乎是一个很大的巧合。

另外,在 Live USB 上,我没有遇到任何问题。即使在较旧的内核版本上,有用

在删除 Docker 之前,我尝试bip设置/etc/docker/daemon.json

{
  "bip": "172.31.0.1/16"
}

效果也不太好。

我尝试启动到连接正常的旧内核并重新安装新内核:

sudo apt update
sudo apt install --reinstall linux-image-4.15.0-43-generic
sudo apt install --reinstall linux-modules-4.15.0-43-generic

两个控制器在 -43 内核上均显示为 UNCLAIMED:

$ sudo lshw -C network

*-network UNCLAIMED       
       description: Network controller
       product: RTL8192EE PCIe Wireless Network Adapter
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:06:00.0
       version: 00
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress cap_list
       configuration: latency=0
  *-network UNCLAIMED
       description: Ethernet controller
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:07:00.0
       version: 15
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix bus_master cap_list
       configuration: latency=0
       

在 Wi-Fi 设置中,我显示“未找到 Wi-Fi 适配器”。

如果配置:

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 4450  bytes 319294 (319.2 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 4450  bytes 319294 (319.2 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

这看起来不像是驱动程序问题,因为正如我所说,在重新启动之前它工作正常。

我也尝试过:

sudo rfkill list
sudo rfkill unblock all

有人能帮助我吗?

系统信息:

操作系统名称:Ubuntu 20.04.1 LTS

核心:5.8.0-44-generic(在 5.8.0-43-generic 上有效)

操作系统类型:64位

侏儒版本:3.36.8

类似问题

https://forums.docker.com/t/cant-access-internet-after-installing-docker-in-a-fresh-ubuntu-18-04-machine/53416

安装了 Docker,然后在重新启动时失去了互联网连接! [Ubuntu 16.04.2 LTS]

相关内容