-
Notifications
You must be signed in to change notification settings - Fork 9
Adding your computer to the network
hschier edited this page Mar 10, 2020
·
14 revisions
-
Connect to the RSX network. The password is the 6-character RSX password typed twice.
-
Using a web browser, go navigate to 192.168.1.1
-
Login to the base router using the username rsx and the 6-character RSX password.
- Navigate to the LAN > DHCP Server menu.
- Under Client Name, select your computer. For the IP Address, choose one between
192.168.1.70
and192.168.1.254
that is not already taken. Hit the Add button, then hit Apply at the bottom of the page.
- Reboot your computer and the router to update the IP assignment.
- On your computer, run the command
sudo su
sudo echo "192.168.1.50 jetson" >> /etc/hosts
exit
This adds the Jetson to your hosts file, so you can connect to it using jetson
instead of it's full IP address, 192.168.1.50
.
- On the Jetson, run the commands
sudo su
sudo echo "192.168.1.75 my-computer-name" >> /etc/hosts
exit
Replacing 192.168.1.75
with the IP address you chose for your computer, and my-computer-name
with a simple name for your computer in lower-case and with no spaces.
Wondering how to make nice formatting? Check out this guide!