Hello everybody,
I have a machine to which i can connect and successfully launch a remote kernel connection. The problem is that this machine is accessible only from inside a private network and can otherwise be connected through a "gate" server.
So what i typically do is tunneling all traffic from a port (say 1234) of localhost to the server through the gate.
In bash code I do this:
ssh -L 1234:remoteServerKernelIPAddress:22 username@gateServer
And then i can connect with a simple
ssh username@localhost -p 1234
How can I specify the port in the remote Kernel Configuration?