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
gefragt vor 4 Jahren2850 Aufrufe
1 Antwort
0
Akzeptierte Antwort

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
beantwortet vor 4 Jahren

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen