Network connection between host and target

Please provide the following info:
**Hardware Platform: DRIVE AGX Xavier™ Developer Kit
**Software Version: DRIVE Software 10
**Host Machine Version: native Ubuntu 18.04
**SDK Manager Version:1.1.0.6343

Hi,

I want to enable an ssh connection between the host and the target however i am not able to access neither way.

I have a RJ45 Cat6 crossover cable connected from the host to the AGX.

Tried the following:

using the command line.

Hi @bkumar1,

if the AGX and your host computer are connected peer to peer, please set for each a different IP and network mask that matches.

for example:
on the host(if eth0 is the interface name)
sudo ifconfig eth0 10.10.10.1 netmask 255.255.255.0
on the AGX
sudo ifconfig eth0 10.10.10.2 netmask 255.255.255.0

then try pinging from one to another.
for example:
on the host
ping 10.10.10.2
on the target
ping 10.10.10.1

if that succeeds, then ssh connection will work.

1 Like