Raspberry Pi 上的 Ubuntu Server 18.04.5 的 Netplan 配置存在问题

Raspberry Pi 上的 Ubuntu Server 18.04.5 的 Netplan 配置存在问题

所以我想为一个机器人项目安装一个 Ubuntu 版的 Raspberry Pi。我正在关注本指南

就像它说的那样我更改了 /etc/netplan/50-cloud-init.yaml 如下:

network:
version: 2
renderer: networkd
# Renderer can be 'networkd' or 'NetworkManager'
ethernets:
eth0:
optional: true
dhcp4: false
wifis:
wlan0:
optional: true
dhcp4: true
access-points:
"YOUR-SSID-NAME":
password: "YOUR-PASSWORD"
# uncomment the line below if you're using a Microsoft DHCP Server
#dhcp-identifier: mac

注意:我没有取消注释最后一行,因为我使用的是 macOS 系统,但不确定是否正确。

问题是:

如果我输入:

sudo netplan --debug try

sudo netplan --debug generate

它给了我“未知关键字“wlan0”。

我尝试用 Google 搜索错误,但在网上只找到不同类型的错误。希望有人能帮助我。

答案1

您的 .yaml 文件缺少正确的格式......

它看起来应该像这样...相同的缩进、间距,并且没有制表符:

network:
  version: 2
  renderer: networkd
  ethernets:
    eth0:
      dhcp4: true
      optional: true
  wifis:
    wlan0:
      dhcp4: true
      access-points:
        "YOUR-SSID-NAME":
          password: "YOUR-PASSWORD"

sudo netplan generate

sudo netplan apply

reboot

您还必须安装 wpasupplicant...

sudo apt-get update

sudo apt-get install wpasupplicant

reboot

如果您的 .yaml 不断被覆盖......

您可能还需要使用以下命令创建 /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg:

network: {config: disabled}

相关内容