1

我需要一些帮助。

我正在尝试使用 boto3 从网络接口获取公共 IP,由于某种原因,我收到以下错误:

ec2 = boto3.resource('ec2')
nia = ec2.NetworkInterfaceAssociation('eni-r2d2')
nia.id  # I can obtain the id without any issue
# 'eni-r2d2'
nia.public_ip
# /usr/local/lib/python3.6/site-packages/boto3/resources/factory.py in property_loader(self)
#     343                             self.__class__.__name__))
#     344
# --> 345             return self.meta.data.get(name)
#     346
#     347         property_loader.__name__ = str(snake_cased)
# 
# AttributeError: 'NoneType' object has no attribute 'get'

注意:网络接口属于ECS任务,启动类型为FARGATE,网络模式为awsvpc。有人能帮助我吗?

谢谢!

4

2 回答 2

4

我可以解决它!这是代码:

import boto3

session = boto3.Session(
  aws_access_key_id='...',
  aws_secret_access_key='...',
  region_name='...',
)
ec2 = session.client('ec2')
response = ec2.describe_network_interfaces(
    NetworkInterfaceIds=['eni-r2d2'],
)
interface = response['NetworkInterfaces'][0]
interface['Association']['PublicIp']
# '1.2.3.4'
于 2018-07-12T03:00:42.213 回答
1

我认为您不能仅使用 boto3 来做到这一点(编辑:OP 证明并非如此!),所以除非您有使用它的要求,否则请使用元数据服务。

AWS 文档会告诉您从容器内调用元数据服务并解析公共 IP 的 json 响应。文档在这里。注意当 ecs-agent 版本 < 1.17.0 时,ECS“经典”具有不同的元数据端点。

像这样的东西应该在 Fargate 的容器内工作:

import requests

try:
    response = requests.get('http://169.254.170.2/v2/metadata').json()  
    for container in response.get('Containers', []):
        if 'Networks' in container:
            for network in container.get('Networks', []):
                if 'IPv4Addresses' in network:
                    for ipv4address in network.get('IPv4Addresses', []):
                        print ipv4address # or do something else
except requests.exceptions.RequestException:
    # parse the smoldering remains of the response object
于 2018-07-11T12:44:30.723 回答