how to accomplish a multihop ssh session in emacs as in the following example,
ssh -t username@login-server -t ssh username@my-institute-computer
using the tramp mode? M-x f RET and then "/ssh: -t ..." seems not to be correct
Thank you for your help!
Edit: It seems that adding
Host my-institute-computer
ProxyCommand ssh login-server nc my-institute-computer 22
to ~/.ssh/config makes the input in emacs possible where I get asked twice for a password. However, now I receive "Permission denied (publickey,keyboard-interactive)". Do you have an idea why?