How to set a Static IP on Jetson Nano
Jetson Nano on JetPack 4.4 is a little different than a standard Ubuntu installation. This may work for versions of JetPack greater than 4.4.
Date Added : Fri Sep 23 2022 16:43:28 GMT+0000 (Coordinated Universal Time)
Last Updated : Fri Sep 23 2022 16:44:08 GMT+0000 (Coordinated Universal Time)
Installing Shinobi on Jetson Nano
If you haven't done so already you may follow these steps here.
Setting the IP via Terminal
1. Open the /etc/default/networking file.
nano /etc/default/networking
2. Modify the CONFIGURE_INTERFACES parameter to be as follows. Then close the file and save it. (CTRL+X)
# Set to 'no' to skip interfaces configuration on boot CONFIGURE_INTERFACES=no
3. Open /etc/network/interfaces and set the IP information. Then close the file and save it. (CTRL + X)
# interfaces(5) file used by ifup(8) and ifdown(8) # Include files from /etc/network/interfaces.d: # source-directory /etc/network/interfaces.d auto eth0 iface eth0 inet static address 172.16.100.253 netmask 255.255.255.0 gateway 172.16.100.1
5. Be sure to comment out any lines above the new declaration. When done reboot. Your Jetson Nano will start on the static IP Address.