如何使用 Python 和 boto3 列出 AWS EC2 实例的 MAC 地址

Man*_*ddi -1 python amazon-web-services python-2.7 boto3

如何使用 Python boto3 库查找有关 Amazon EC2 实例的 MAC 地址的信息。

Joh*_*ein 5

如果您位于实例本身,则可以通过实例元数据服务检索 MAC 地址:

$ curl http://169.254.169.254/latest/meta-data/mac/ 

02:72:f3:75:2f:83
Run Code Online (Sandbox Code Playgroud)