How to Retrieve IPv4 and IPv6 Addresses for Vultr Load Balancer

Updated on 07 April, 2025

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
  • Vultr API
  • Vultr CLI
  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.
  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}"
    
  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>
    

Comments

No comments yet.