aws "network load balancer" 是否有 http/https 地址?

Does aws "network load balancer" has an http/https addess?

我正在尝试使用其 A 地址通过 http 调用我的 AWS 负载均衡器,它是网络负载均衡器类型。 AWS Nework Load Balancer 是否支持 http 调用,我的意思是如果我使用 http://network-load-balancer-A-name/path 调用它,它是否会将请求转发到关联的目标。

AWS Network Load balancer operates at Layer 4 of the OSI stack,它不知道 Http 是什么,因为它在 OSI 堆栈的应用层或第 7 层。

如果 listener of the AWS Network Load Balancer is configured to listen on Port 80 and is configured to forward traffic from port 80 to the target then yes, setting up a A record with an Alias in Amazon Route53 将转发到网络负载均衡器,然后再转发到目标。如果没有 Route53 中的别名设置或使用其他东西而不是 Route53 将需要负载均衡器的 IP 地址。