determine your instance's IPv4 addresses

This commit is contained in:
Morgan 2019-10-12 14:24:58 +02:00 committed by GitHub
parent ebeb6e8384
commit a776ae4a6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

6
cheat/aws.md Normal file
View File

@ -0,0 +1,6 @@
### determine your instance's IPv4 addresses
using instance metadata (source : [AWS Docs](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-instance-addressing.html))
1. Connect to your instance.
2. Use the following command to get its private IP address: `curl http://169.254.169.254/latest/meta-data/local-ipv4`
3. Use the following command to get its public IP address: `curl http://169.254.169.254/latest/meta-data/public-ipv4`