-
Notifications
You must be signed in to change notification settings - Fork 1
Jetson Nano: Setup and Maintenance
Bryce George edited this page May 15, 2021
·
3 revisions
Author: ancient-sentinel - Last Updated: 5/6/2021
It is convenient to setup a wireless access point on the Jetson Nano for the NAO robot to connect to automatically. This also allows the Jetson Nano to share internet access with the robot if it is connected to another network with internet access. The following instructions show how to setup an access point to host a local WiFi network using the Network Manager CLI.
-
Open a new
Terminal
window. -
Add the wireless access point as a new connection by running the following command:
Replace <wireless-interface>
with the wireless network interface (e.g. wlan0, wlan1, wlan2, etc.)
nmcli con add type wifi ifname <wireless-interface> mode ap con-name nano-ap ssid NaoNano
- Set the 802.11 wireless band:
nmcli con modify nano-ap 802-11-wireless.band bg
- Set the 802.11 wireless channel:
nmcli con modify nano-ap 802-11-wireless.channel 1
- Set the 802.11 wireless security to use WPA:
nmcli con modify nano-ap 802-11-wireless-security.key-mgmt wpa-psk
- Set the WPA password (this will be the password to connect to the WiFi network)
nmcli con modify nano-ap 802-11-wireless-security.psk <your-password>
- Allow IP sharing so connected devices can access the internet:
nmcli con modify nano-ap ipv4.method shared
- Start the WiFi network (Note: this can also be done from the networks menu):
nmcli con up nano-ap
For additional information, see the following resources: