Configure static internal IP addresses

This page shows you how to configure and manage static internal IPv4 or IPv6addresses for your Compute Engine virtual machine (VM) and bare metalinstances.

If an instance requires a fixed internal IP address thatdoes not change, you can obtain a static internal IP address for that instanceby using one of the following options:

To learn how to manage secondary internal IP addresses, readAlias IP ranges.

In Compute Engine, each VM instance can havemultiple network interfaces.Each interface can have one external IP address, one primary internal IP address,andone or more secondary internal IP addresses.To learn about IP addresses,read theIP addresses documentation.

With static internal IP addresses, you can always use the same IP address for aVM, even if you have to delete and recreate the VM.

To configure a static external IP address instead of an internal IP address, seeConfigure static external IP addresses.

Before you begin

Required roles

To get the permissions that you need to configure and manage static IP addresses, ask your administrator to grant you the following IAM roles on your project:

For more information about granting roles, seeManage access to projects, folders, and organizations.

These predefined roles contain the permissions required to configure and manage static IP addresses. To see the exact permissions that are required, expand theRequired permissions section:

Required permissions

The following permissions are required to configure and manage static IP addresses:

  • compute.instances.update on the VM instance
  • compute.instances.updateNetworkInterface on the VM instance
  • compute.instances.addAccessConfig on the VM instance
  • compute.instances.deleteAccessConfig on the VM instance
  • compute.networks.list on the network
  • compute.subnetworks.use on the subnet
  • compute.subnetworks.list on the subnet
  • To create VMs:
    • compute.instances.create on the project
    • To use a custom image to create the VM:compute.images.useReadOnly on the image
    • To use a snapshot to create the VM:compute.snapshots.useReadOnly on the snapshot
    • To use an instance template to create the VM:compute.instanceTemplates.useReadOnly on the instance template
    • To assign alegacy network to the VM:compute.networks.use on the project
    • To specify a static IP address for the VM:compute.addresses.use on the project
    • To assign an external IP address to the VM when using a legacy network:compute.networks.useExternalIp on the project
    • To specify a subnet for the VM:compute.subnetworks.use on the project or on the chosen subnet
    • To assign an external IP address to the VM when using a VPC network:compute.subnetworks.useExternalIp on the project or on the chosen subnet
    • To set VM instance metadata for the VM:compute.instances.setMetadata on the project
    • To set tags for the VM:compute.instances.setTags on the VM
    • To set labels for the VM:compute.instances.setLabels on the VM
    • To set a service account for the VM to use:compute.instances.setServiceAccount on the VM
    • To create a new disk for the VM:compute.disks.create on the project
    • To attach an existing disk in read-only or read-write mode:compute.disks.use on the disk
    • To attach an existing disk in read-only mode:compute.disks.useReadOnly on the disk

You might also be able to get these permissions withcustom roles or otherpredefined roles.

Limitations

  • The number of static internal IP addresses that you can reserve cannot exceedyour project's quota. For more information, see the per-projectquotas in the VPC documentation.

  • Only one resource at a time can use a static internal IP address.

  • Reserving a static internal IP address is only supported forVPC networks. It is not supported for legacy mode networks.

  • Deleting a resource does not automatically release a static internal IPaddress. You must manually release static internal IP addresses when youno longer require them.

  • Each VM can have multiple network interfaces,and each interface can have the following IP addresses assignedaccording to itsstack type:

    • IPv4-only interfaces:
      • An internal IPv4 address (required)
      • An external IPv4 address (optional)
    • Dual-stack (IPv4 and IPv6) interfaces:
      • An internal IPv4 address (required)
      • An external IPv4 address (optional)
      • A/96 IPv6 address range, either internal or external, but not both (required)
    • IPv6-only interfaces:
      • A/96 IPv6 address range, either internal or external, but not both (required)
  • You can't unassign or change the following:

    • The internal IPv4 address of an existing resource. Forexample, you can't assign a new static internal IP address to a running or astopped VM instance.
    • The internal IPv6 address of a VM with an IPv6-only network interface.

    You can, however, promote an ephemeral internal IPaddress of a resource to a static internal IP address so that the addressremains reserved even after the resource is deleted.

  • You cannot change the name of a static IP address.

  • Static internal IP addresses are regional, meaning they are restricted tothe region in which they are reserved. For example,if there is a reserved static internal IP address inRegion A, youcan only use the IP address inRegion A.

How to configure a static internal IP address

You can reserve a static internal IP address, and then specify the reservedaddress when creating an instance. You can also create the VM with an ephemeralinternal IP address and then promote that ephemeral IP address to astatic internal IP address.

To use a static internal IP address, you must have a VPC network inplace for your project. To view the VPC networks in your project, seeView VPC networks.

Reserve a static internal IPv4 or IPv6 address and then associate itwith a specific VM

In this scenario, you separately reserve a static internal IP addressand then assign it to an instance:

  1. Choose a subnet in yourVPC network. For IPv6 addresses, make sure that it is asubnet with an internal IPv6 address range.

  2. Reserve an internal IP addressfrom the subnet's primary IP range. This stepcreates a named internal IP address resource that contains that specificinternal IP address. Reserving the IP address prevents Google Cloud fromautomatically allocating that address as an ephemeral address.

  3. Use the reserved internal IP address by associating it with an instancewhen you create the VM resource.

Specify an ephemeral internal IPv4 or IPv6 address for an instance andthen promote the address

In this scenario, you promote an ephemeral internal IPv4 or IPv6 address that isstill attached to an instance:

  1. Choose a subnet in yourVPC network. For IPv6 addresses, make sure that it is asubnet with an IPv6 address range.

  2. Create an instance with either an automatically allocated ephemeralIPv4 or IPv6 address or a custom IPv4 or IPv6 address.

  3. Promotethe ephemeral internal IP address to a static address.

View available static internal IP addresses

To view all your existing static internal IP addresses, complete the followingsteps.

Console

  1. In the Google Cloud console, go to theIP addresses page.

    Go to IP addresses

  2. ClickInternal IP addresses.

gcloud

Use thegcloud compute addresses list command:

gcloud compute addresses list

API

Use theaddresses.list method:

GET https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/regions/REGION/addresses

Replace the following:

  • PROJECT_ID: the project ID for this request
  • REGION: the name of the region for this request

To list all the addresses in all regions, use theaddresses.aggregatedList method:

GET https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/aggregated/addresses

How internal IP addresses are assigned

The network interfaces for an instance are assigned IP addresses from the subnetthat they are connected to. Each IPv4-only or dual-stack network interface hasone primary internal IPv4 address that is assigned from the subnet's primaryIPv4 range. Each IPv6-only or dual-stack network interface connected to a subnetwith an internal IPv6 address range is assigned an internal IPv6 address.

Internal IPv4 addresses can be assigned in the following ways:

  • Compute Engine assigns a single IPv4 address from the primary IPv4 subnetrange automatically.
  • You can assign a specific internal IPv4 address when you create aninstance, or you canreserve a static internal IPv4 addressfor your project and assign that address to network interface of aninstance.

Internal IPv6 addresses can be assigned in the following ways:

  • Compute Engine assigns a single/96 range from the IPv6 subnet rangeautomatically.
  • You can assign a custom/96 range from the subnet's internal IPv6 rangewhen you create an instance, or you canreserve a static internal IPv6 address rangefrom the subnet's internal IPv6 range and assign it to the networkinterface of an instance.

Use reserved static internal IP addresses when creating resources

After you reserve a static internal IP address, you can assign the reservedaddress when creating an instance or an internal load balancer.

The following procedures describe how to use static internal IPaddresses when creating resources:

Create an instance with a reserved internal IPv4 or IPv6 address

When you create an instance that is connected to a dual-stack or IPv6-only subnet withan internal IPv6 range, and you don't specify a custom ephemeral internal IPv6address or reserved static internal IPv6 address, Compute Engineautomatically assigns the instance an ephemeral internal IPv6 address from thesubnet's IPv6 range.

Console

  1. In the Google Cloud console, go to theCreate a VM instance page.

    Go to Create a VM instance

  2. Expand theAdvanced options section.

  3. Expand theNetworking section.

  4. To assign an internal IPv4 address, do the following:

    1. Select a network and a subnetwork.
    2. Select a reserved internal IPv4 address from thePrimary internal IPv4 address list.

    Alternatively, selectReserve static internal IP address andreserve a new static internal IPv4 address.

  5. To assign an internal IPv6 address, do the following:

    1. Select a network that contains a subnet with an IPv6 address range.
    2. Select a dual-stack or IPv6-only subnet from theSubnetwork list.The subnetmust have theINTERNAL IPv6 access type.
    3. ForIP stack type, selectIPv4 and IPv6 (dual-stack) orIPv6 (single-stack).
    4. Select a reserved internal IPv6 address from thePrimary internal IPv6 address list.

    Alternatively, selectReserve static internal IPv6 address andreserve a new static internal IPv6 address.

  6. To finish modifying the default network interface, clickDone.

  7. Continue with the instance creation process.

  8. ClickCreate.

gcloud

  • Use theinstances create commandto create an instance with a reserved internal IPv4 address, anduse the--private-network-ip flag to specify the IP address:

    gcloud compute instances createINSTANCE_NAME \    --private-network-ipIP_ADDRESS

    Replace the following:

    • INSTANCE_NAME: the name of the instance that youwant to create
    • IP_ADDRESS: the IP address that you want to assign

    If you're using a custom subnet mode network, you must also specify thesubnet by using the--subnetSUBNET parameter.

  • To create an instance with a reserved internal IPv6 address, use the--internal-ipv6-address flag to specify the IP address:

    gcloud compute instances createINSTANCE_NAME \    --subnetSUBNETWORK \    --stack-typeSTACK_TYPE \    --internal-ipv6-addressINTERNAL_IPV6_ADDRESS \    --zoneZONE

    Replace the following:

    • INSTANCE_NAME: the name of the instance that youwant to create
    • SUBNETWORK: the subnet for the internalIPv6 address
    • STACK_TYPE: the stack type for the instance,eitherIPV4_IPV6 orIPv6_ONLY.
    • INTERNAL_IPV6_ADDRESS: the/96 IPv6address, the IP address name, or the URI of the address resource. TheIP address must be reserved before you can use it.
    • ZONE: the zone to create the instance in.

REST

To create an instance with a static internal IP address, use theinstances.insert method.

  • For internal IPv4 addresses, explicitly provide thenetworkInterfaces[].networkIP property with the internal IPv4 addressthat you want to assign for the instance.

    For example:

    POST https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/instances{"name": "INSTANCE_NAME","machineType": "zones/us-central1-f/machineTypes/e2-micro","networkInterfaces": [{  "accessConfigs": [{    "type": "ONE_TO_ONE_NAT",    "name": "External NAT",  }],  "network": "global/networks/default",  "networkIP": "IPV4_ADDRESS"}],"disks": [{  "autoDelete": "true",  "boot": "true",  "type": "PERSISTENT",  "initializeParams": {      "sourceImage": "projects/debian-cloud/global/images/v20150818"  }}]}

    Replace the following:

    • PROJECT_ID: the ID of the project to create theinstance in
    • ZONE: the zone to create the instance in
    • INSTANCE_NAME: the name of the virtual machine
    • IPV4_ADDRESS: the internal IPv4 address to assign tothe instance
  • For internal IPv6 addresses, explicitly specify the values for thefollowing properties:

    • networkInterfaces[].stackType
    • networkInterfaces[].ipv6Address
    • networkInterfaces[].internalIpv6PrefixLength
    • networkInterfaces[].ipv6AccessType

    For example:

    POST https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/instances{"name": "INSTANCE_NAME","machineType": "zones/us-central1-f/machineTypes/n4-standard-2","networkInterfaces": [{  "network": "global/networks/default",  "stackType": "STACK_TYPE"  "ipv6Address": "IPV6_ADDRESS",  "internalIpv6PrefixLength": 96}],"disks": [{  "autoDelete": "true",  "boot": "true",  "type": "PERSISTENT",  "initializeParams": {      "sourceImage": "projects/debian-cloud/global/images/debian-11-bullseye-v20241009"  }}]}

    Replace the following:

    • PROJECT_ID: the ID of the project to create theinstance in.
    • ZONE: the zone to create the instance in.
    • INSTANCE_NAME: the name of the instance.
    • STACK_TYPE: the stack type for the instance,eitherIPV4_IPV6 orIPv6_ONLY.
    • IPV6_ADDRESS: the internal IPv6 address to assign tothe instance.

If you delete an instance with an ephemeral IP address, the address goes backinto the unallocated address pool. If you need an internal IP addressto persist beyond the life of the instance, you canreserve a static internal IP address.

Assign a static internal address to an instance's secondary network interface

When you create an instance with multiple network interfaces, you can usea reserved static internal IPv4 or IPv6 address for both primary and secondarynetwork interfaces.

To use a static internal IPv4 or IPv6 address for a secondary network interface,seeCreate instances with multiple network interfaces.

Change or assign an internal IPv6 address to an existing instance

You can change or assign an internal IPv6 address for an existing dual-stackinstance. If the instance is IPv4-only and you want to assign an IPv6 address,you must first change its stack type to dual-stack.

If the instance already has an internal IPv6 address assigned to it, you mustfirstunassign that address. Then, assign a new address tothe instance by using the instance's network interface.

Note: If you need to update the IP address of a forwarding rule, seeChange the IP address of a forwarding rule.

To change or assign a static internal IPv6 address to an existing instance,complete the following steps.

Console

  1. Reserve a static internal IPv6 address.
  2. In the Google Cloud console, go to theVM instances page.

    Go to VM instances

  3. Click the name of the instance whose internal IPv6 address you want tochange.

  4. On theInstance details page, complete the following steps:

    1. ClickEdit.
    2. ExpandNetwork interfaces.
    3. If the instance is IPv4-only and you want to assign an IPv6 address,you must first change the stack type to dual-stack.
    4. In thePrimary internal IPv6 address list, do one of thefollowing:
      • To automatically assign a new ephemeral IPv6 address, chooseEphemeral (Automatic).
      • To manually specify a new ephemeral IPv6 address, chooseEphemeral (Custom).
      • To assign an existing static internal IP address, choose thename of a reserved IPv6 address from the list.
    5. ClickDone.
  5. ClickSave.

gcloud

Use thecompute instances network-interfaces update command.

gcloud compute instances network-interfaces updateINSTANCE_NAME \    --network-interfaceNIC \    --ipv6-network-tier PREMIUM \    --stack-typeSTACK_TYPE \    --internal-ipv6-addressINTERNAL_IPV6_ADDRESS \    --zoneZONE

Replace the following:

  • INSTANCE_NAME: the name of the instance that you wantto create
  • NIC: the name of the network interface to update
  • STACK_TYPE: the stack type for the instance,which must beIPV4_IPV6
  • INTERNAL_IPV6_ADDRESS: the/96 internalIPv6 address to be assigned to the interface, the IP address name, orthe URI of the address resource
  • ZONE: the zone for the instance

REST

Use theinstances.update method. Update thenetworkInterfaces[].ipv6Address property with the internal IPv6 address that you want to assign.

For example:

 POST https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/instances/INSTANCE_NAME  {      ...      "networkInterfaces": [{          "accessConfigs": [{              "type": "ONE_TO_ONE_NAT",              "name": "External NAT",          }],          "stackType": "STACK_TYPE"          "ipv6Address": "IPV6_ADDRESS",          "internalIpv6PrefixLength": 96          "subnetwork": "regions/REGION/subnetworks/SUBNETWORK",      }],      "disks": [{          "autoDelete": "true",          "boot": "true",          "type": "PERSISTENT",          "initializeParams": {              "sourceImage": "projects/debian-cloud/global/images/debian-11-bullseye-v20241009"          }      }] }

Replace the following:

  • PROJECT_ID: the ID of the project the instance is in
  • ZONE: the zone to create the instance in
  • INSTANCE_NAME: the name of the instance
  • STACK_TYPE: the stack type for the instance,which must beIPV4_IPV6
  • IPV6_ADDRESS: the internal IPv6 address to assignto the instance

    If you specify the URI of the internal IPv6 address resource or anIPv6 address range as the value forIPV6_ADDRESS,then you must leave the value ofinternalIpv6PrefixLength blank.

Manage static internal IP addresses

The following procedures let you manage static internal IPaddresses for your instances:

Determine if an internal IPv4 or IPv6 address is ephemeral or static

Static and ephemeral internal IP addresses behave and appear the same in mostcontexts. However, with static internal IP addresses, you can use the same IPaddress for the same resource even if you delete and re-create the resource.In general, an ephemeral IP address is released if you stop or delete theresource.

To determine if an address is static or ephemeral, do the following:

  1. In the Google Cloud console, go to theIP addresses page.

    Go to IP addresses

  2. Find the address in the list and check theType column for the type ofIP address.

Unassign a static internal IPv6 address

You can unassign a static internal IPv6 address from a dual-stack instanceby updating the stack type for the instance's network interface or bydeleting the instanceto which the address is assigned.

When you unassign an internal IPv6 address, the system removes it from theresource but keeps the address reserved for your project. You can laterreassign the address to another resource.

To unassign a static internal IPv6 address from an instance, complete thefollowing steps.

Console

  1. In the Google Cloud console, go to theVM instances page.

    Go to VM instances

  2. Click the name of the instance whose internal IPv6 address you want tounassign.

  3. On theInstance details page, complete the following steps:

    1. ClickEdit.
    2. ExpandNetwork interfaces.
    3. ForIP stack type, selectIPv4 (single-stack).
    4. ClickDone.
  4. ClickSave.

gcloud

Use thecompute instances network-interfaces update commandwith the--stack-type flag set toIPV4_ONLY:

gcloud compute instances network-interfaces updateINSTANCE_NAME \    --network-interface=NIC \    --stack-type=IPV4_ONLY \    --zone=ZONE

Replace the following:

  • INSTANCE_NAME: the name of the instance whose network interface you want to update
  • NIC: the name of the network interface to update
  • ZONE: the zone for the instance

Check that your static internal IPv6 address is now available and markedasRESERVED instead ofIN_USE:

gcloud compute addresses list \    --filter="region=REGION AND name=INSTANCE_NAME"

REST

Update the instance stack type of the network interface where the internal IPv6 address is attached:

  1. Make aPATCH request to theinstances.updateNetworkInterface method.
  2. In the request body, update the value of thestackType field toIPV4_ONLY.

    For example:

    PATCH https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/instances/INSTANCE_NAME/updateNetworkInterface{    "networkInterfaces": [{        ...        "stackType" : "IPV4_ONLY"        ...    }]}

    Replace the following:

    • PROJECT_ID: the ID of the project that theinstance is in
    • ZONE: the zone to create the instance in
    • INSTANCE_NAME: the name of the instance

Release a static internal IP address

If you no longer need a static internal IPv4 or IPv6 IP address, you can releasethe IP address by deleting the IP address resource. Deleting an instance doesn'tautomatically release a static external IP address. You must manually releasestatic external IP addresses when you no longer require them.

To release a static internal IP address, seeRelease a static internal IPv4 or IPv6 addressin the VPC documentation.

What's next

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-15 UTC.