-
Notifications
You must be signed in to change notification settings - Fork 58
Guide to SSH into the vehicle
Siddharth Kannan edited this page Aug 20, 2016
·
1 revision
- Install
openssh-client
andopenssh-server
packages on Ubuntu fromapt-get
sudo apt-get install openssh-client openssh-server
-
Create a new network connection on your computer
-
Select
Ethernet
as the connection type -
Connection name:
AUV
-
Switch to the tab
IPv4 settings
, and enter the following in the table that is visible there:- Change
Method
toManual
- In the
Addresses
table, click onAdd
- Address:
192.168.10.11
- Netmask:
255.255.255.0
- Gateway:
0.0.0.0
- Address:
- Change
-
Click on
Save
-
Plugin the LAN cable from the vehicle into your computer, and select this newly created network
AUV
. Your computer will connect to it and the LAN symbol will show up. -
Open a terminal and type the command:
ssh -X [email protected]
- Enter the vehicle password when prompted
- If you enter the correct password, you have SSH access to the AUV!
Copy this snippet into the file ~/.ssh/config
(Create it if it doesn't exist)
Host auv
User teamauv
Hostname 192.168.10.12
Now, you can type the command ssh auv
and be on your way!
Have a look at the wiki article SSH-ing with a RSA key pair. Once you set that up, you won't have to enter the password each time you want to login.