I configured my instance. Its up and running. I can ssh in with my key (provisioned by chef/knife) before assigning an elastic IP. For example this works (before EIP):

'ssh -F .ssh/config ec2-ww-xx-yy-zz.us-west1.computer.amazonaws.com'

After assigning an EIP I get a:

Permission denied (publickey)

error message as its checking my home folder for the key instead of the project directory.

I even specified the config directory an the EIP:

ssh -F .ssh/config ubuntu@ww.xx.yy.zz -v

which returns a "Connection timed out message".

When I use Elastic Fox I can see the EIP was associated correctly. Am I missing an AWS setting which denies SSH to EIPs?

link|improve this question

On a side note I made sure port 22 was wide open in the aws security group – upbeat.linux Jun 10 '11 at 2:33
Seems to be working now. Added a wait function to my bash script and it finally picked it up. – upbeat.linux Jun 10 '11 at 3:54
feedback

2 Answers

Once an EC2 instance is launched, it will assign a public and private IP address. An instance's private IP address will never change during the lifetime of that instance. However, its public dns address can change under certain circumstances.

So, after you associate an EIP to any instance, use that IP to login into your machine.

link|improve this answer
feedback
up vote 0 down vote accepted

Thanks Rakesh. The sleep function (see my comment above) in my bash script did the trick.

The next issue I ran into was SSH being blocked. After some testing I flushed iptables and disabled ufw. I was able to SSH into the EIP without issue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.