Toni Schriber replied to the topic 'Indi Remote Question' in the forum. 1 year ago

Steve is right, your command lacks the destination.

I too, I'm using a SSH-tunnel into the observatory, with the following command
"ssh -fNL 8624:localhost:8624 user@destination"

Notes:

  1. "localhost" refers in fact to the remote machine "destination"!
  2. there is no need to change port number, so you can stay with 8624
  3. -f : go to background
  4. -N : noshell
  5. -L : local forwarding

BTW, why you want to use SSH? Are there any security issues? If not, you can access the port at the destination directly.

Read More...