0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Netplanでパスワード無しのWifiに接続する方法

Posted at

これは何?

Ubuntuなど、ネットワーク設定でNetplanを使用するディストリビューションで、パスワード無しの無線LANに接続したい場合の設定内容です。

なかなかこういうキーワードで検索できなかったので、ここにメモしておきます。

本記事のポイント

SSIDの設定として、下記のようにすることで、パスワード無しで接続します。

auth:
  key-management: none

設定方法

/etc/netplan/Netplan に、設定ファイルを作成します。

下記の例では、ファイル名を「90-PublicWifi.yaml」としましたが、お好みでどうぞ。
「FreeWifi」の部分は、接続先のSSIDに置き換えてください。
「wlp1s0」の部分は、お使いのPCのWifiデバイス名に置き換えてください。

90-PublicWifi.yaml
network:
  wifis:
    wlp1s0:
      dhcp4: true
      access-points:
        FreeWifi:
          auth:
            key-management: none

  version: 2

Wifiデバイス名は「ip a」コマンドなどで確認してください。

参考資料

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?