无需以太网即可连接 Wifi?

无需以太网即可连接 Wifi?

我已经安装了 Ubuntu Server 19.10,但无法连接到互联网。我没有任何以太网端口,只有 Wifi 芯片。无线工具、网络工具、网络管理器和 wpasupplicant 均未安装。我尝试连接的网络具有 WPA2 安全性。

答案1

这是我的 Ubuntu 18.04 Netplan 配置。它是 /etc/netplan/ 中的一个 .yaml 文件。请参阅 netplan.io 以获取应用配置的命令。您的 wifi 适配器可能不是 wlp1s0。您需要在系统上找到它。我在我的网络上使用静态 IP 地址 192.168.0.66。您的可能不同。

network:
  version: 2
  renderer: networkd
  wifis:
    wlp1s0:
      dhcp4: no
      dhcp6: no
      addresses: [192.168.0.66/24]
      gateway4: 192.168.0.1
      nameservers:
        addresses: [192.168.0.1, 8.8.8.8]
      access-points:
        "MySSID":
          password: "MyPassword"
      optional: true

相关内容