Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 AWS,有没有办法找到所有负载均衡器的 IP 地址列表或在所有负载均衡器之间搜索特定 IP 地址?
您可以使用DescribeLoadBalancersAPI 调用来获取DNSName每个负载均衡器。dig然后,您可以使用软件库将 DNS 名称转换为该负载均衡器的一个或多个 IP 地址。
DescribeLoadBalancers
DNSName
dig
在您检索到所有负载均衡器的所有 IP 地址列表后,您可以按 IP 进行反向搜索。请记住,ELB 的 IP 地址理论上可以随时间变化。
https://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html