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
preguntada hace 4 años2850 visualizaciones
1 Respuesta
0
Respuesta aceptada

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
respondido hace 4 años

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas