Wifi 設定

いくつか設定方法はあるが、GUIなどのツールを用いない場合の設定は、 恐らく次の netplan を設定するのが正しいと思われる。

netplan を用いた設定

  1. /etc/netplan/50-cloud-init.yuml を編集する。
    1. 設定例) DHCP 利用
      nework:
          ethernets:
              eth0:
                  dhcp4: true
                  optional: true
          version: 2
          wifis:
              wlan0:
                  dhcp4: true
                  optional: true
                  access-points:
                      [SSID]:
                          password: "[Password]"
      # 固定IPアドレスの場合
              wlan0:
                  addresses:
                    - 192.168.1.5/24
                  gateway4: 192.168.1.1
                  nameservers:
                      search: [mydomain, otherdomain]
                      addresses: [192.168.1.1, 8.8.8.8 ]
      # access-points は複数指定可能。
      # [SSID], [Password], [mydomain, otherdomain] は、適宜修正のこと。
  2. 次のコマンドを入力し、設定を反映する。
    sudo netplan apply
  3. 再起動すると自動接続します。

トップ   一覧 検索 最終更新   ヘルプ   最終更新のRSS