Python boto - 如何获得弹性ip的分配ID

时间:2014-06-09 06:17:45

标签: python amazon-ec2 boto

当我使用boto(用于aws的python sdk)将弹性ip分配给我在vpc中的实例时,它报告了以下错误:

    <Response>
      <Errors>
         <Error>
           <Code>InvalidParameterCombination</Code>
           <Message>You must specify an allocation id when mapping an address to a network interface</Message>
    </Error>
    </Errors>
    <RequestID>d0f95756-c36f-417a-9fa9-1158c4aa19e9</RequestID>
</Response>

但我在ec2-medata中找不到分配ID。

有人知道如何从API获取分配ID?

我已经在控制台中看到了它:

try: conn = boto.ec2.connect_to_region(zone, aws_access_key_id='a-id', aws_secret_access_key='s-id',debug=2) conn.associate_address(allow_reassociation=True, public_ip=kw['ip'], network_interface_id=nid, dry_run=True)

1 个答案:

答案 0 :(得分:2)

如果您使用get_all_addresses,则应返回Address个对象的列表,这些对象具有与其关联的allocation_id属性。对于与VPC关联的任何地址,allocation_id将为非。

import boto.ec2
c = boto.ec2.connect_to_region('us-east-1')
addresses = c.get_all_addresses()
for addr in addresses:
    print('%s - %s' % (addr.public_ip, addr.allocation_id)

这有帮助吗?