Skip to main content

We've Moved!

Product Documentation has moved to docs.hitachivantara.com
Hitachi Vantara Knowledge

Get aggregate interfaces

Get a list of aggregate network interfaces. An aggregate is a collection of one or more physical interfaces that are bundled together to behave as a single logical interface.

HTTP request syntax (URI)
GET <base_URI>/v8/storage/file-devices/aggregate-interfaces
Return codes
Code Data Description
200 aggregateInterfaces Aggregate interfaces retrieved successfully.
500 Error message Error associated with the storage system.

Any HTTP status code other than 200 indicates that the API did not complete successfully.

Request example
curl -vk -H "X-Api-Key: zrxvSDAv9x.RIP4gkmKarG3beF.or.4Tc2im7oeqYN88C9XPGHxbXC" https://172.17.11.11:8444/v8/storage/file-devices/aggregate-interfaces
Response example
HTTP/1.1 200 OK
{
  "aggregateInterfaces": [
    {
      "interfaces": [
        {
          "port": "tg1",
          "status": "Down"
        },
        {
          "port": "tg2",
          "status": "Down"
        }
      ],
      "lacpEnabled": true,
      "loadBalance": "ROUND_ROBIN",
      "name": "ag2",
      "objectId": "6167323a3a3a303a3a3a4f49445f24232140255f56"
    },
    {
      "interfaces": [],
      "lacpEnabled": false,
      "loadBalance": "NORMAL",
      "name": "ag3",
      "objectId": "6167333a3a3a303a3a3a4f49445f24232140255f56"
    }
  ]
}

 

  • Was this article helpful?