How to Retrieve IPv4 and IPv6 Addresses for Vultr Load Balancer

How to Retrieve IPv4 and IPv6 Addresses for Vultr Load Balancer

Information about IP addresses in Vultr, including how to manage, assign, and troubleshoot both IPv4 and IPv6 addresses for your cloud resources.


Retrieving IPv4 and IPv6 Addresses for your Vultr Load Balancer allows you to obtain the network addresses associated with your Load Balancer. These addresses are essential for configuring DNS settings, integrating with other services, or ensuring correct network routing. By noting these addresses, you can efficiently manage and direct traffic to your Load Balancer.

Follow this guide to retrieve IPv4 and IPv6 addresses for your Vultr Load Balancer using the Vultr Customer Portal, API, or CLI.

Vultr Customer Portal

  1. Navigate to Products and click Load Balancers.
  2. Click your target Load Balancer to open its management page.
  3. Note the IPv4 and IPv6 addresses.

Vultr API

  1. Send a GET request to the List Load Balancers endpoint and note the target Load Balancer’s ID.
    console
    $ curl "https://api.vultr.com/v2/load-balancers" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
  2. Send a GET request to the Get Load Balancer endpoint and note the IPv4 and IPv6 addresses for the target Load Balancer.
    console
    $ curl "https://api.vultr.com/v2/load-balancers/{load-balancer-id}" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"

Vultr CLI

  1. List all available instances and note the target Load Balancer’s ID.
    console
    $ vultr-cli load-balancer list
  2. Retrieve the IPv4 and IPv6 addresses for the target Load Balancer.
    console
    $ vultr-cli load-balancer get <load-balancer-id>

How to Retrieve IPv4 and IPv6 Addresses for Vultr Load Balancer Information about IP addresses in Vultr, including how to manage, assign, and troubleshoot both IPv4 and IPv6 addresses for your cloud resources. Retrieving IPv4 and IPv6 Addresses for your Vultr Load Balancer allows you to obtain the network addresses…

How to Retrieve IPv4 and IPv6 Addresses for Vultr Load Balancer Information about IP addresses in Vultr, including how to manage, assign, and troubleshoot both IPv4 and IPv6 addresses for your cloud resources. Retrieving IPv4 and IPv6 Addresses for your Vultr Load Balancer allows you to obtain the network addresses…

Leave a Reply

Your email address will not be published. Required fields are marked *