How to Create Vultr Reserved IPs

Updated on November 27, 2024

Reserved IPs enable dedicated IP Addresses that are isolated from the public pool of Vultr's public IP addresses for attachment to your instances. Reserved IPs enable you to reserve a specific public IP address in a single Vultr location you can attach and use with your instances.

Follow this guide to create reserved IPs in your Vultr account using the Vultr Customer Portal, API, or CLI.

  • Vultr Customer Portal
  • Vultr API
  • Vultr CLI
  1. Navigate to Products, expand the Network drop-down and select Reserved IPs from the list of options.

    Access the Vultr Reserved IPs page

  2. Click Add Reserved IP to create a new reserved IP address.

    Add a new reserved IP

  3. Click the Location drop-down and select your target Vultr location.

    Enter New Reserved IP details

  4. Click the Type drop-down and select the reserved IP address type.

  5. Enter a new descriptive label in the Label field and click Add to create the reserved IP.

    View the reserved IP page

  1. Send a GET request to the List Reserved IPs endpoint to view all reserved IPs active in your Vultr account.

    console
    $ curl "https://api.vultr.com/v2/reserved-ips" \
       -X GET \
       -H "Authorization: Bearer ${VULTR_API_KEY}"
    
  2. Send a POST request to the Create Reserved IP endpoint to create a new reserved IP address in a specific Vultr location.

    console
    $ curl "https://api.vultr.com/v2/reserved-ips" \
      -X POST \
      -H "Authorization: Bearer ${VULTR_API_KEY}" \
      -H "Content-Type: application/json" \
      --data '{
        "region" : "<location>",
        "ip_type" : "<address_type>",
        "label" : "<label>"
      }'
    

    Visit the Create Reserved IP API page to view additional attributes to apply on the reserved IP.

  1. List all active reserved IPs in your Vultr account.

    console
    $ vultr-cli reserved-ip list
    
  2. Create a new reserved IP in a specific Vultr location.

    console
    $ vultr-cli reserved-ip create --label <label> --region <location> --type <address_type>
    

    Run vultr-cli reserved-ip create --help to view additional options to apply on the reserved IP.