2020年1月12日日曜日

Raspberry Pi 4 + Ubuntu Server 19.10 で Wi-Fi の設定をする

Raspberry Pi 4 に Ubuntu Server 19.10 をインストールして Wi-Fi のセットアップ中。
/etc/network/interfaces で設定するんじゃないのね。

netplan は、/etc/netplan/XX-***.yaml の XX が若い順に後勝ちで処理されるので、
/etc/netplan/98-wifi.yaml を作成。SSID と SSID-PASSWORD は適当に修正。

# vi /etc/netplan/98-wifi.yaml

network:
    wifis:
        wlan0:
            dhcp4: true
            optional: true
            access-points:
                SSID:
                    password: SSID-PASSWORD
    version: 2

設定を反映するのは netplan コマンドで。

# netplan apply

● raspberry pi 4, raspi4, ubuntu, server, 19.10, wi-fi, Wi-Fi, interfaces, netplan, wlan0, 無線 LAN

0 件のコメント: