Networking

IPv6 Pools List

get
https://api.linode.com/v4/networking/ipv6/pools

Displays the IPv6 pools on your Account. A pool of IPv6 addresses are routed to all of your Linodes in a single Region. Any Linode on your Account may bring up any address in this pool at any time, with no external configuration required.

Query Parameters

page
integer > = 1
Default: 1

The page of a collection to return.

page_size
integer [25 .. 500]
Default: 100

The number of items to return per page.

Request Samples

curl -H "Authorization: Bearer $TOKEN" \
    https://api.linode.com/v4/networking/ipv6/pools

Response Samples

{
  "data": [
    {
      "region": "us-east",
      "range": "2600:3c01::2:5000:0",
      "prefix": 124,
      "route_target": "2600:3c01::2:5000:f"
    }
  ],
  "page": 1,
  "pages": 1,
  "results": 1
}

Responses

200: The IPv6 pools on your Account.

data
array of objects
region
Filterable
string

The region for this pool of IPv6 addresses.

range
string

The IPv6 range of addresses in this pool.

prefix
integer

The prefix length of the address. The total number of addresses that can be assigned from this range is calculated as 2(128 - prefix length).

route_target
Nullable
string

The last address in this block of IPv6 addresses.

page
integer

The current page.

pages
integer

The total number of pages.

results
integer

The total number of results.

default: Error

errors
array of objects
reason
string

What happened to cause this error. In most cases, this can be fixed immediately by changing the data you sent in the request, but in some cases you will be instructed to open a Support Ticket or perform some other action before you can complete the request successfully.

field
string

The field in the request that caused this error. This may be a path, separated by periods in the case of nested fields. In some cases this may come back as "null" if the error is not specific to any single element of the request.