This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
While you can get the public and private IP address of your Amazon EC2 instance via the AWS Console, it may be extremely useful to query it from anywhere you can make an HTTP request, such a shell script. The operation is really simple, just make a GET request to the following URL from within your EC2 instance: | |
Local IP: | |
curl http://169.254.169.254/latest/meta-data/local-ipv4 | |
Public IP: | |
curl http://169.254.169.254/latest/meta-data/public-ipv4 | |
I often use this feature to pre-configure services and update configuration files, as in EC2 you get a new IP Address each time you reboot | |
&&&&&&&&& | |
Also see this article > | |
http://rafaelsteil.com/tag/ec2/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment