My situation :
Me(localhost) -> Server A(ip:100.100.100.100) =>(server B(ip:192.168.25.100),server....)
i'm able to SSH into server since it has a true ip if i then want to connect to server b, i would ssh server b with it's ip(192.168.25.100)
example:
from my pc:
ssh [email protected]
then in 100.100.100.100,
ssh [email protected]
this would get me to server B with ssh
what if i want to connect to server b directly? how can i do that?
example:
from my oc:
[email protected]
i have tried the following:
ssh -L 22:localhost:22 [email protected]
without success