How do you get the private IP address of the eth1 network interface on an Amazon EC2 instance?

0

I've attached multiple elastic network interfaces to an Amazon EC2 instance, and I need get the private IP address of the eth1 network interface. What command(s) do I need to run to get it?

AWS
asked 4 years ago2794 views
1 Answer
0
Accepted Answer

To get the private IP address of an Amazon EC2 instance, you can use either of the following describe-instances AWS CLI commands:

Important: Replace <instance-id> with your Amazon EC2 instance's ID. Replace <your-private-dns-name> with the private DNS name of the network interface.

aws ec2 describe-instances --instance-id <instance-id> --query 'Reservations[0].Instances[0].NetworkInterfaces[?Attachment.DeviceIndex==`1`].PrivateIpAddress'

-or-

aws ec2 describe-instances --filters Name=private-dns-name,Values=<your-private-dns-name> --query 'Reservations[0].Instances[0].NetworkInterfaces[?Attachment.DeviceIndex==`1`].PrivateIpAddress'
AWS
answered 4 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions