Reach your machine remotely via NVIDIA Sync
Confirm that you have an SSH client installed on your system. Most modern operating systems include SSH by default. Run the following in your terminal:
# Check SSH client version
ssh -V
Expected output should show OpenSSH version information.
Collect the required connection details for your hardware platform:
spark-abcd.local)In some network configurations, such as complex corporate environments, mDNS will not work as expected and you will have to use your device's IP address directly to connect. You will know you are in this situation when you try to SSH and the command hangs indefinitely or you get an error like:
ssh: Could not resolve hostname spark-abcd.local: Name or service not known
Testing mDNS resolution
To test if mDNS is working, use the ping utility:
ping spark-abcd.local
If mDNS is working and you can SSH using the hostname, you should see something like this:
$ ping -c 3 spark-abcd.local
PING spark-abcd.local (10.9.1.9): 56 data bytes
64 bytes from 10.9.1.9: icmp_seq=0 ttl=64 time=6.902 ms
64 bytes from 10.9.1.9: icmp_seq=1 ttl=64 time=116.335 ms
64 bytes from 10.9.1.9: icmp_seq=2 ttl=64 time=33.301 ms
If mDNS is not working, indicating you will have to use your IP directly, you will see something like this:
$ ping -c 3 spark-abcd.local
ping: cannot resolve spark-abcd.local: Unknown host
If none of these work, you'll need to:
Connect to your hardware platform for the first time to verify basic connectivity:
# Connect using mDNS hostname (preferred)
ssh <YOUR_USERNAME>@<DEVICE_HOSTNAME>.local
or
# Alternative: Connect using IP address
ssh <YOUR_USERNAME>@<DEVICE_IP_ADDRESS>
Replace placeholders with your actual values:
<YOUR_USERNAME>: Your hardware platform account name<DEVICE_HOSTNAME>: Device hostname without the .local suffix<DEVICE_IP_ADDRESS>: Your device's IP addressOn first connection, you'll see a host fingerprint warning. Type yes and press Enter,
then enter your password when prompted.
Once connected, confirm you're on the hardware platform:
# Check hostname
hostname
# Check system information
uname -a
# Exit the session
exit
To access web applications running on your hardware platform, use SSH port forwarding. In this example you'll access the DGX Dashboard web application.
NOTE
DGX Dashboard runs on localhost, port 11000.
Open the tunnel:
# local port 11000 → remote port 11000
ssh -L 11000:localhost:11000 <YOUR_USERNAME>@<DEVICE_HOSTNAME>.local
After establishing the tunnel, access the forwarded web app in your browser: http://localhost:11000
With SSH access configured, you can:
ssh <YOUR_USERNAME>@<DEVICE_HOSTNAME>.localssh -L <local_port>:localhost:<remote_port> <YOUR_USERNAME>@<DEVICE_HOSTNAME>.local