I am trying to use libssh to open an SSH tunnel.
Basically, I have two hosts in the way. First, I would need to SSH to the first one (I have already done this part), then I would need to SSH from that host to the second host:
[my PC] --SSH--> [host 1] --ssh--> [host 2] (similar to ssh -L )
Is this possible in libssh?
I tried to use this function ssh_channel_open_forward, but this only opens a TCP session, not a ssh session.