I am trying to SSH to EC2 through bastion(jump-box), but had an issue with it. I tried it with .ssh/config
and it worked. But I want to do it as a command NOT with .ssh/config
(I know its the correct way)
local-host ---> bastion ---> ec2
ubuntu user present on bastion & ec2, key (dev-key.pem) present on local-host only.
I tried bunch of solution along with this :
local-host$ ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i /home/ubuntu/automator/dev-key.pem -A -t ubuntu@${bastion} -A -t ssh -o UserKnownHostsFile=/dev/null -o -i /home/ubuntu/automator/dev-key.pem StrictHostKeyChecking=no ubuntu@${ec2} "hostname > /tmp/hostname.txt"
error :
Permission denied (publickey).
Anybody can help me with this ?
As per the docs you can use the
ssh -J
option:So your command will be: