I am trying to ssh from Computer-A to Computer-C by tunnelling through Computer-B with the key on Computer-B. I have already shared keys from Computer-A to Computer-B and from Computer-B to Computer-C
This works on computerA to connect to computerC without a password or intervention:
ssh -t computerB ssh computerC
If I put this same command in my ssh_config on computerA it just hangs
Host = computerC
ProxyCommand = ssh -t computerB ssh computerC
i get the following error: Pseudo-terminal will not be allocated because stdin is not a terminal.