Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a complicated use case for this ,
But for short , while an instance is running, can I switch the elastic IP to another one ? and what will happen in this time interval (between de-associating , and re-associating [might be 10-30 minutes] ) .. Won't it be able to communicate over the internet ?

EDIT: Great answers so far, but this answers the second part of the question, the main one is , how to change the IP while it is running?

share|improve this question

4 Answers

up vote 2 down vote accepted

All of your questions are more or less addressed in the Feature Guide: Amazon EC2 Elastic IP Addresses, e.g:

  • While an instance is running, can I switch the elastic IP to another one?
    Of course, that's one of the main use cases for Elastic IP addresses: Unlike a standard EC2 Public IP Address, Elastic IP Addresses are allocated to accounts and can be remapped to other instances when desired. [This includes running instances, see "How to change the Elastic IP Address of a running EC2 instance" below.]
  • What will happen in this time interval (between de-associating, and re-associating [might be 10-30 minutes])?
    That'd be longer than advertized, see the FAQ How long does it take to remap an Elastic IP address?:

    In most cases, this will typically take less than a few minutes from when you instruct us to remap the Elastic IP, and we are continuing to work to make this even faster. [I've actually not experienced this process taking longer than a minute myself]

  • Won't it be able to communicate over the internet?
    That depends on the scenario at hand, but as a simplification you should probably work with this assumption, as per the following two FAQs:

    • If an Elastic IP is removed from an instance is the instance reachable from the internet?

      Removing the Elastic IP from an instance temporarily leaves the instance without a Public IP Address. A background process in the cloud will re-assign a new Public IP to the instance after a short period of time. The instance will remain reachable from within the cloud on its private IP address during this process.

    • Why do existing connections still work after I associate a new IP address to an instance?

      When you remap an Elastic IP to an instance, some of your preexisting communications (to the old and now unmapped IP address) will continue to work even after the remap. For example, if you have an open ssh connection to an instance via its system assigned Public IP address and subsequently associate one of your Elastic IP addresses with that instance, the ssh session might continue to function normally for some time. This behavior is expected but unreliable. We strongly urge you to reestablish connections via the new remapped IP addresses to ensure that your software functions correctly.

How to change the Elastic IP Address of a running EC2 instance

The answer to your follow up question is embedded/implied in the aforementioned guide as well, but addressed in more detail in chapter Elastic IP Addresses (EIP), specifically in sections Associating an Elastic IP Address with a Running Instance in Amazon EC2 and Associating an Elastic IP Address with a Different Running Instance in Amazon EC2:

Please refer to the EC2 IP Information FAQ for even more details regarding the subject matter.

share|improve this answer

Elastic IPs are assigned using NAT. Your instance has an internal IP that is NATed to the Elastic IP. While an instance has no Elastic IP associated it will have an arbitrary IP from a pool and thus will still be able to communicate with the internet (given that access rules are properly configured).

share|improve this answer
Switching the IP is what is most important to me now .. :) Do u have a clue? – Naughty.Coder Jan 4 at 7:03
See aws.amazon.com/articles/1346 – AndreKR Jan 4 at 7:09

You can always use Public DNS name to access the system. No problem to communicate over internet.

do a curl from the instance to know private / public addresses to use

http : // 169 . 254. 169. 254/latest/meta-data/local-ipv4

http : // 169. 254. 169. 254/latest/meta-data/public-ipv4

Refer : http://docs.amazonwebservices.com/AWSEC2/latest/UserGuide/AESDG-chapter-instancedata.html

share|improve this answer
but do you know how to change the IP while the instance is running? – Naughty.Coder Jan 4 at 6:59

Yes: you can change the IP address of a running instance. Just associate a second elastic IP address with the instance and it will replace the existing one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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