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?

Jetson Orin NanoのWi-Fi

Posted at

Jetson Orin Nano開発キットをWi-Fiモジュールが搭載されるようになりましたが、ルーターによっては、よりセキュリティの高いプロトコルを要求されます。通常のnmcli device wifiのコマンドを実行するだけでは接続できず。PCと同じようなセキュリティプロトコルでWPA-PSKセキュリティプロトコルが必要になっております。

nmcli(NetworkManager Command Line Interface)を利用し接続したいSSIDを調べます。

nmcli connection show

方式の定義とSSID、パスワードを入力

sudo nmcli connection add type wifi ifname wlan0 con-name "takeochan-point" ssid "takeochan" wifi-sec.key-mgmt wpa-psk wifi-sec.psk "1234"

ネットワークを有効化します。

sudo nmcli connection up "takeochan-point" --ask
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?