简体   繁体   中英

How to know if a existing AWS ELB is either Classic or Application load Balancer

I got responsible for the management of a AWS account with a preexisting load balancer, and want to know if it is a Classic load balancer or an application load balancer .

I could not find the information either through the web console or the ruby API

在Web控制台中,当您查看负载均衡器列表时,会有一个“ 类型 ”列,告诉您它是哪种类型。

With API V2 describe-load-balancers command will give you the type of the ELB.

aws elbv2 describe-load-balancers --names my-load-balancer

Type will indicate the type of the ELB

{
  "LoadBalancers": [
  {
      "VpcId": "vpc-3ac0fb5f",
      "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188",
      "State": {
          "Code": "active"
      },
      "DNSName": "my-load-balancer-424835706.us-west-2.elb.amazonaws.com",

      "SecurityGroups": [
          "sg-5943793c"
      ],
      "LoadBalancerName": "my-load-balancer",
      "CreatedTime": "2016-03-25T21:26:12.920Z",
      "Scheme": "internet-facing",
      "Type": "application",
      "CanonicalHostedZoneId": "Z2P70J7EXAMPLE",
      "AvailabilityZones": [
          {
              "SubnetId": "subnet-8360a9e7",
              "ZoneName": "us-west-2a"
          },
          {
              "SubnetId": "subnet-b7d581c0",
              "ZoneName": "us-west-2b"
          }
          ]
      }
  ]
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM