I have a ssh server which I can only connect to via kerberos. I would like to use some tools with it, which only support "plain" SSH + passwords (for example the Netbeans C++ remote development feature).
Is it possible to set up an ssh server such, that when you connect to it, it itself opens a connection to the kerberized server, and then forwards everything completely transparently?
I was thinking of creating a user for sshd, whose login script sshes into the other server and pipes everything through, but maybe a nicer solution already exists.
(This is on ubuntu, the remote server is running some kind of linux.)