[ https://issues.apache.org/jira/browse/JCLOUDS-1426?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16511070#comment-16511070 ]
Andrea Turli commented on JCLOUDS-1426: --------------------------------------- thanks for reporting the problem In order to reproduce the issue quickly, how did you create 2 private ip address for your machine? Surprisingly [https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Instance.html] official doc says the instance has a field {{*ipAddress*}} {{The public IPv4 address assigned to the instance, if applicable.}} {{Type: String}}{{Required: No}} so looks like AWS EC2 is not expecting more than 1 private IP address > Jclouds does not return all private ip address of aws ec2 instance > ------------------------------------------------------------------ > > Key: JCLOUDS-1426 > URL: https://issues.apache.org/jira/browse/JCLOUDS-1426 > Project: jclouds > Issue Type: Bug > Components: jclouds-compute > Affects Versions: 2.0.3 > Environment: AWS EC2 > Reporter: Dushyant Gupta > Assignee: Andrea Turli > Priority: Major > > I have made use of apache jclouds library to fetch ec2 instance details. I > have attached 2 network interfaces on a single ec2 instance to provide it 2 > IPs. > [!https://i.stack.imgur.com/xSHU3.png!|https://i.stack.imgur.com/xSHU3.png] > But from the following code of jclouds, I see only one IP (of primary > interface [eth0]) getting retrieved. > {{ ComputeService cs = computeContext.getComputeService(); }} > {{ for (ComputeMetadata cm : cs.listNodes()){ }} > {{ NodeMetadata nm = (NodeMetadata) cm; }} > {{ System.out.println(nm); }} > {{ }}} > > In the output I can see only one IP address: > {quote}privateAddresses=[172.26.119.234] > {quote} -- This message was sent by Atlassian JIRA (v7.6.3#76005)