Quantcast
Channel: Do, or do not - Rafael Steil » General
Viewing all articles
Browse latest Browse all 12

Get the public / local IP of your EC2 instance via command line

$
0
0

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.

 


Viewing all articles
Browse latest Browse all 12

Trending Articles