This page describes how to list, create, describe, delete, and update Network Connectivity Center hubs and spokes.
For an introduction to Network Connectivity Center, see the Network Connectivity Center overview.
Before you begin
Before you get started, review the following sections.
Create or select a project
To make it easier to configure Network Connectivity Center, start by identifying a valid project.
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
If you are using the Google Cloud CLI, set your project ID by using the
gcloud config set
command.gcloud config set project PROJECT_ID
Replace
PROJECT_ID
with your unique project ID.The gcloud CLI instructions on this page assume that you have set your project ID.
To confirm that you set the project ID correctly, use the
gcloud config list
command.gcloud config list --format='text(core.project)'
Enable the Network Connectivity API
Before you can perform any tasks using Network Connectivity Center, you must enable the Network Connectivity API.
Console
To enable the Network Connectivity API:
In the Google Cloud console, go to the Network Connectivity Center page.
Click Enable.
Alternatively, you can enable the API by using the Google Cloud console API Library, as described in Enabling APIs.
Get access
To work with Network Connectivity Center, you need the permissions described in Roles and permissions.
Identify resources
When you reference resources by using the gcloud CLI or the API, use the conventions described in the following table.
Convention | Supported for | Notes | Example |
---|---|---|---|
Full URI | All resources | Use one of these methods to reference router appliance instances. |
"https://www.googleapis.com/compute/projects/PROJECT_ID/zones/ZONE/instances/INSTANCE_NAME" |
Relative resource name | All resources | "projects/PROJECT_ID/zones/ZONE/instances/INSTANCE_NAME" |
|
Name | Regional and global resources | Use this method for hubs, spokes, VPN tunnels, and VLAN attachments. | "HUB_NAME" |
Work with hubs
This section describes how to list, create, describe, and delete Network Connectivity Center hubs. You can also update a hub's labels or description.
Create a hub
To use Network Connectivity Center, you must create at least one hub and one spoke. You can create spokes at the same time that you create hubs, or you can add the spokes later.
When you create a hub, you can optionally apply labels to the hub. For more information about labels, see Requirements for labels.
For information about the maximum number of spokes permitted per project, see Quotas and limits.
Console
In the Google Cloud console, go to the Network Connectivity Center page.
In the project menu, select a project.
Click Create hub.
Complete the Basic configuration section of the form:
- Enter a Hub name.
- Optional: Enter a Description.
- Optional: To add a label, click Add Item, and then enter a Key and Value.
- Verify that the form displays the correct Project ID. If the project ID is incorrect, select a different project by using the menu at the top of the page.
To enable Private Service Connect connection propagation, in the Private Service Connect connection propagation field, click On. This feature (Preview) only applies to VPC spokes.
Do one of the following:
- If you want to create a spoke, click Next step and complete the spoke-creation section of the form. For instructions, see one of the following sections:
- If you don't want to create a spoke right now, click Create to finish creating your new hub.
gcloud
To create a hub, use the
gcloud network-connectivity hubs create
command.
gcloud network-connectivity hubs create HUB_NAME \ --description="DESCRIPTION" \ --labels="KEY"="VALUE"
If you want to enable Private Service Connect
propagated connection (Preview) globally
for the Network Connectivity Center hub, use the --export-psc
flag. This feature
only applies to VPC spokes.
gcloud network-connectivity hubs create HUB_NAME \ --description="DESCRIPTION" \ --labels="KEY"="VALUE" \ [ --export-psc]
Replace the following values:
HUB_NAME
: the name of the new hubDESCRIPTION
: optional text that describes the hubKEY
: the key in the key-value pair for the optional label textVALUE
: the value in the key-value pair for the optional label text
API
To create a hub, use the
networkconnectivity.hubs.create
method.
POST https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs { "name":"HUB_NAME", "description":"DESCRIPTION", "labels": { "KEY": "VALUE" } }
If you want to enable Private Service Connect
propagated connection (Preview) globally
for the Network Connectivity Center hub, set the export-psc
value to "true". This
feature only applies to VPC spokes. Private Service Connect
connection propagation doesn't propagate to on premises networks through
hybrid spokes, such as Cloud Interconnect VLAN attachments,
HA VPN tunnels, and Router appliance.
POST https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs { "export_psc": true }
Replace the following values:
PROJECT_ID
: the project ID of the project that contains the new hubHUB_NAME
: the name of the new hubDESCRIPTION
: optional text that describes the hubKEY
: the key in the key-value pair for the optional label textVALUE
: the value in the key-value pair for the optional label text
List hubs
To list the hubs associated with a project, use the following guidance.
Console
In the Google Cloud console, go to the Network Connectivity Center page.
In the project menu, select a project.
The page lists all hubs associated with the project, along with the following information about each hub:
- The name of the hub
- The description of the hub
- Any labels that have been applied to the hub
- The number of spokes associated with the hub
- The types of spokes associated with the hub
gcloud
To list the hubs associated with a project, use the
gcloud network-connectivity hubs list
command.
gcloud network-connectivity hubs list
The command output includes the name and description of each hub.
API
To list the hubs associated with a project, use the
networkconnectivity.hubs.list
method.
GET https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs
Replace PROJECT_ID
with the project ID of the project that
contains the hubs to list.
For each hub, this method returns the following details:
- The name of the hub
- A timestamp that shows when the hub was created
- A timestamp of the last update
- Any labels applied to the hub
- The description of the hub, if one exists
- The unique ID of the hub
- The state of the hub
- A list of
routingVpcs
, which are VPC networks associated with the spokes for the hub
Describe a hub
Use the following guidance to retrieve details about a project's hub.
Console
In the Google Cloud console, go to the Network Connectivity Center page.
In the project menu, select a project to view information about that project's hub.
To view details about the hub's spokes, click the Spokes tab.
gcloud
To get detailed information about an existing hub, use the
gcloud network-connectivity hubs describe
command.
gcloud network-connectivity hubs describe HUB_NAME
Replace HUB_NAME
with the name of the hub.
Output from this command includes the following information:
- The time the hub was created
- The hub's description
- Any labels applied to the hub
- The VPC networks (
routingVpcs
) that are associated with this hub's spoke resources - The hub's unique identifier
- The time the hub was last updated
If you want information about the spokes attached to a hub, see List spokes and Describe a spoke.
API
To get detailed information about an existing hub, use the
networkconnectivity.hubs.get
method.
GET https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs/HUB_NAME
Replace the following values:
PROJECT_ID
: the project ID of the project that contains the hubs to describeHUB_NAME
: the name of the hub to describe
Output from this command includes the following information:
- The time the hub was created
- The hub's description
- Any labels applied to the hub
- The VPC networks (
routingVpcs
) that are associated with this hub's spoke resources - The hub's unique identifier
- The time the hub was last updated
The following snippet illustrates a typical response to this API call:
{ "name": "projects/myproject/locations/global/hubs/myhub", "createTime": "2021-08-29T23:40:25.844970812Z", "updateTime": "2021-08-30T04:20:36.738801209Z", "labels": { "environment": "test" }, "description": "in review", "uniqueId": "d6d3e375-4224-4352-a3b6-776042419430", "state": "ACTIVE", "routingVpcs": [ { "uri": "https://www.googleapis.com/compute/v1/projects/myproject/global/networks/myvpcnetwork" } ] }
If you want information about the spokes attached to a hub, see List spokes and Describing a spoke.
Update a hub
After a hub has been created, you can add or change either of the following:
- The labels applied to the hub; for information about labels, see Requirements for labels
- The description of the hub
- Enable Private Service Connect connection propagation on an existing hub. This feature (Preview) only applies to VPC spokes.
Console
In the Google Cloud console, go to the Network Connectivity Center page.
In the project menu, select a project.
Click the name of the hub that you want to modify.
On the Hub details page, click
Edit hub.Update the hub description and labels.
To enable Private Service Connect connection propagation, click On. To disable Private Service Connect connection propagation, click Off. This feature (Preview) only applies to VPC spokes.
Click Save.
gcloud
To update a hub's description or add labels to a hub, use the
gcloud network-connectivity hubs update
command.
gcloud network-connectivity hubs update HUB_NAME \ --description="DESCRIPTION" \ --update-labels="KEY"="VALUE"
If you want to enable Private Service Connect
propagated connection (Preview) globally
for the Network Connectivity Center hub, use the --export-psc
flag. This feature
only applies to VPC spokes.
gcloud network-connectivity hubs update HUB_NAME \ --description="DESCRIPTION" \ --labels="KEY"="VALUE" \ --export-psc
Replace the following values:
HUB_NAME
: the name of the hubDESCRIPTION
: an optional new description for the hubKEY
: the key in the key-value pair for the optional label textVALUE
: the value in the key-value pair for the optional label text
You can disable the Private Service Connect connection
propagation feature on existing hubs by using
the --no-export-psc
flag. Existing propagation connections are removed
asynchronously.
To remove one or more labels, use the --remove-labels
flag. To remove
all labels,
use the --clear-labels
flag. For more information, see the
gcloud network connectivity hubs update
command.
API
To update a hub's description or add labels to a hub, use the
networkconnectivity.hubs.patch
method.
PATCH https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs/HUB_NAME { "description": "DESCRIPTION", "labels": { "KEY": "VALUE" } }
If you want to enable Private Service Connect
propagated connection (Preview) globally
for the Network Connectivity Center hub, set the export-psc
value to "true". This
feature only applies to VPC spokes.
PATCH https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs/HUB_NAME { "export_psc": true }
Replace the following values:
PROJECT_ID
: the ID of the project that contains the hubHUB_NAME
: the name of the hubDESCRIPTION
: an optional description of the hubKEY
: the key in the key-value pair for the optional label textVALUE
: the value in the key-value pair for the optional label text
You can disable the Private Service Connect connection
propagation feature on an existing hub by setting the export_psc
value
to "false". Existing propagation connections are removed asynchronously.
Delete a hub
Before you can delete a hub, you must delete its spokes, as described in Delete a spoke.
Console
In the Google Cloud console, go to the Network Connectivity Center page.
In the project menu, select a project.
Click
Delete hub.In the confirmation dialog, do one of the following:
- Click Cancel if you don't want to delete the hub.
- Click Delete to delete the hub.
gcloud
To delete a hub, use the
gcloud network-connectivity hubs delete
command.
gcloud network-connectivity hubs delete HUB_NAME
Replace HUB_NAME
with the name of the hub.
API
To delete a hub, use the
networkconnectivity.hubs.delete
method.
DELETE https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs/HUB_NAME
Replace the following values:
PROJECT_ID
: the project ID of the project that contains the hub to deleteHUB_NAME
: the name of the hub to delete
Work with spokes
This section describes how to list, create, describe, delete, and update Network Connectivity Center spokes.
Spoke guidelines
When you create a spoke, you specify the type of Google Cloud network resource that you plan to associate with the spoke.
- For a list of supported resource types, see the Spokes section of the Network Connectivity Center overview.
- For the number of resources that you can associate with a spoke, see the Quotas and limits page.
For hybrid spokes, we recommend creating spokes in the region closest to the site that the spoke connects to. A site could be an on-premises data center, a branch office, or another cloud provider. VPC spokes are global.
Requirements
You must create each spoke in the same Google Cloud region as the
Network Connectivity resource that you want to associate with the spoke. For
example, suppose you have a VPN tunnel that uses an HA VPN
gateway in us-central1
. If you want to create a spoke that uses this tunnel,
you must create the spoke in us-central1
.
Limitations
After you create a spoke, many of its attributes cannot be changed. If you want to modify an attribute that cannot be changed, you must delete the spoke and re-create it.
For example, the following attributes cannot be changed:
The value of the site-to-site data transfer field.
The HA VPN tunnels or VLAN attachments associated with the spoke.
The VPC network associated with the spoke's backing resources. This limitation is relevant only to Router appliance spokes, because they have modifiable resources.
The consumer VPC spoke and peering connection name of a producer VPC spoke (Preview).
For a list of spoke attributes that can be changed after the spoke is created, see Update a spoke.
Recommendations for attaching multiple resources to a spoke
When creating a spoke, you can add more than one resource, but all resources must be of the same type. For example, you can add multiple HA VPN tunnels, but you can't add HA VPN tunnels and VLAN attachments.
Also, for VLAN attachments and VPN tunnels, the following restriction exists: although a spoke can be associated with multiple resources, each resource can be associated with only one spoke. In contrast, a router appliance instance can be associated with multiple spokes if it has interfaces in multiple VPC networks, and if the site-to-site data transfer field is set to false. However, each interface can be associated with only one spoke.
Additionally, see the resource-specific recommendations described in the sections Create a Router appliance spoke, Create a VLAN attachment spoke, Create a VPN spoke, and Create a VPC spoke.
ASN spoke assignment (hybrid spokes only)
For hybrid spokes, you must assign ASNs as described in ASN requirements.
Validate spoke resources
Before you create a spoke, the corresponding resource must be configured correctly. For more information, see the resource-specific recommendations described in the sections Create a VPC spoke, Create a producer VPC spoke (Preview), Create a Router appliance spoke, Create a VLAN attachment spoke, and Create a VPN spoke.
Create a VPC spoke
Before creating VPC attachment spokes, consider the following guidelines:
- VPC spokes are global because VPC networks are global.
- There must be no subnet overlaps across VPC spokes. You can
avoid this by using the
exclude export ranges
flag. - There cannot be a subnet overlap between Network Connectivity Center VPC connectivity and VPC peering.
- VPC spokes, where the hub and the VPC spoke are in different projects, have a different workflow. For more information, see VPC spokes in a different project than a hub.
- VPC spokes attached to a hub that supports star topology must be explicitly assigned to a spoke group.
- If you want to create a Private Service Connect connection in the VPC spoke (Preview), the hub must have Private Service Connect connection propagation enabled. For instructions about how to create a Private Service Connect endpoint, see Create an endpoint.
To connect multiple VPC networks within a given project, connect a VPC network to a spoke, and connect it to a hub.
If you are creating a VPC to connect to a hub that is configured for star topology, you must get the project ID, the hub name or URI, and the group name from the hub administrator.
If you want to assign exclude export ranges or include export ranges, use the appropriate options during spoke creation.
To create a VPC spoke, follow these steps.
Console
In the Google Cloud console, go to the Network Connectivity Center page.
In the project menu, select a project in which you want to create the spoke.
Click the Spokes tab.
Click Add spokes.
In the Select hub section, select the hub location as follows:
- To attach the new spoke to a hub in the same project, select
In project
PROJECT_NAME
and select the hub name from the list. - If you want to attach the new spoke to a hub in another project, select In another project. Enter the Project ID and the Hub name to which you want to attach your new spoke.
When you choose a hub in a different project, your spoke becomes active only when the hub administrator reviews and accepts your proposed spoke. For more details about creating spokes attached to a hub in a different project, see VPC spokes overview. If you are creating a VPC spoke in the same project as the hub, it is automatically accepted and activated.
- To attach the new spoke to a hub in the same project, select
In project
Enter a Spoke name and optionally, a Description.
If the hub that you are connecting to is configured for star topology, select the Spoke group for your spoke. For detailed information about spoke groups, see Spoke groups.
Select VPC network as the Spoke type.
To add a VPC network to the spoke, select one from the Associated VPC network list.
Optionally, you can add a VPC spoke filter to customize how routes are advertised by entering an IP address range to exclude or include export from the spoke to hub. You cannot change this filter after the spoke is created.
Click Done.
If you want to add more spokes, click Add spoke and begin the process again, starting with entering a Spoke name.
When you have finished adding spokes, click Create. The Network Connectivity Center page updates to show details about the spokes that you created.
gcloud
To create a VPC spoke, use the
gcloud network-connectivity spokes linked-vpc-network create
command.
gcloud network-connectivity spokes linked-vpc-network create SPOKE_NAME \ --hub=HUB \ --description=DESCRIPTION \ --vpc-network=VPC_URI \ --exclude-export-ranges=[EXCLUDE_CIDR_RANGE] \ --include-export-ranges=[INCLUDE_CIDR_RANGE] \ --global \ --group=GROUP_NAME
Replace the following:
SPOKE_NAME
: the name of the spoke that you are creating, such asvpc-spoke1
HUB
: the hub for the spokeDESCRIPTION
: (optional) text to describe the spokeVPC_URI
: the VPC network that this spoke points to[EXCLUDE_CIDR_RANGE]
: a comma-separated list of IP address ranges to be excluded from exporting to the hub (up to 16 CIDR ranges), such as10.1.0.0/16, 192.168.0.0/24, 172.16.1.1/32
. The specified ranges must be longer than or equal to the individually configured subnets within the VPC.[INCLUDE_CIDR_RANGE]
: a comma-separated list of IP address ranges to be included in exporting to the hub (up to 16 CIDR ranges), such as10.1.0.0/16, 192.168.0.0/24, 172.16.1.1/32
.GROUP_NAME
: the group this spoke belongs to—for example,center
oredge
. This field is required for spoke groups that use star topology. For detailed information about spoke groups, see Spoke groups.
API
To create a VPC spoke, use the
networkconnectivity.spokes.create
method.
POST https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/spokes/SPOKE_NAME { "hub":"HUB_NAME", "linkedVpcNetwork": { "uri": VPC_URI, "include_export_ranges": "[INCLUDE_CIDR_RANGE]", "exclude_export_ranges": "[EXCLUDE_CIDR_RANGE]", "group": "GROUP_NAME" }, }
Replace the following values:
PROJECT_ID
: the project ID of the project that contains the new spoke.HUB_NAME
: the name of the hub that you are attaching the spoke to.VPC_URI
: The VPC network that this spoke points to, such asvpc_uri
.[INCLUDE_CIDR_RANGE]
: a comma-separated list of IP address ranges to be included in exporting to the hub (up to 16 CIDR ranges), such as10.1.0.0/16, 192.168.0.0/24, 172.16.1.1/32
. The specified ranges must be longer than or equal to the individually configured subnets within the VPC.[EXCLUDE_CIDR_RANGE]
: a comma-separated list of IP address ranges to be excluded from exporting to the hub (up to 16 CIDR ranges), such as10.1.0.0/16, 192.168.0.0/24, 172.16.1.1/32
.GROUP_NAME
: the group that this spoke belongs to. The name of the spoke group. Supported values aredefault
for a mesh topology hub andcenter
oredge
for a star topology hub. This field is required for spoke groups that use star topology. For detailed information on spoke groups, see Spoke groups.
Create a producer VPC spoke
Before you create a producer VPC spoke:
- Review the considerations for producer VPC spokes.
- Review the guidelines for creating VPC spokes, which also apply to producer VPC spokes.
To connect a service producer VPC network with other networks in a given project, connect the producer VPC network to a producer VPC spoke, and connect the producer VPC spoke to a hub.
If you use the Google Cloud CLI or the API to connect the producer VPC spoke to a hub that is configured for star topology, you must use the same group name as the existing consumer VPC spoke on the hub. If you use the Google Cloud console, the producer VPC spoke is automatically added to the same group.
If you want to assign exclude export ranges or include export ranges, use the appropriate options during spoke creation.
To create a producer VPC spoke, follow these steps.
Console
In the Google Cloud console, go to the Network Connectivity Center page.
In the project menu, select a project in which you want to create the spoke.
Click the Spokes tab.
Click Add spokes.
In the Select hub section, select the hub location as follows:
- To attach the new spoke to a hub in the same project, select
In project
PROJECT_NAME
and select the hub name from the list. - If you want to attach the new spoke to a hub in another project, select In another project. Enter the Project ID and the Hub name to which you want to attach your new spoke.
When you choose a hub in a different project, your spoke becomes active only when the hub administrator reviews and accepts your proposed spoke. For more information about creating spokes attached to a hub in a different project, see VPC spokes overview. If you are creating a producer VPC spoke in the same project as the hub, the producer VPC spoke is automatically accepted and activated.
- To attach the new spoke to a hub in the same project, select
In project
Enter a Spoke name and optionally, a Description.
Select Producer VPC network as the Spoke type.
Enter the name of an existing Consumer VPC spoke on the hub that consumes services from the producer VPC network through a VPC Network Peering connection. Google Cloud identifies the producer network through the peering connection.
Optionally, you can add a VPC spoke filter to customize how routes are advertised by entering an IP address range to exclude or include export from the spoke to hub. You cannot change this filter after the spoke is created.
Click Done.
If you want to add more spokes, click Add spoke and begin the process again, starting with entering a spoke name.
When you have finished adding spokes, click Create. The Network Connectivity Center page updates to show details about the spokes that you created.
gcloud
To create a producer VPC spoke, use the
gcloud network-connectivity spokes linked-producer-vpc-network create
command.
gcloud network-connectivity spokes linked-producer-vpc-network create SPOKE_NAME \ --hub=HUB \ --description=DESCRIPTION \ --network=CONSUMER_VPC_URI \ --peering=servicenetworking-googleapis-com \ --exclude-export-ranges=[EXCLUDE_CIDR_RANGE] \ --include-export-ranges=[INCLUDE_CIDR_RANGE] \ --global \ --group=GROUP_NAME
The --peering
flag must be set to servicenetworking-googleapis-com
.
Replace the following:
SPOKE_NAME
: the name of the spoke that you are creating, such asproducer-vpc-spoke1
HUB
: the hub for the spokeDESCRIPTION
: optional text to describe the spokeCONSUMER_VPC_URI
: the VPC network that consumes services from the producer network through a VPC Network Peering connection. Google Cloud identifies the producer VPC network through the peering connection. The consumer network that you enter must also be a spoke in the hub. You can enter the full or relative URI. The following example shows the relative URI:projects/PROJECT_ID/global/networks/NETWORK_NAME
.[EXCLUDE_CIDR_RANGE]
: a comma-separated list of IP address ranges to be excluded from exporting to the hub—up to 16 CIDR ranges—such as10.1.0.0/16, 192.168.0.0/24, 172.16.1.1/32
. The specified ranges must have a longer prefix or be equal to the individually configured subnets within the producer VPC.[INCLUDE_CIDR_RANGE]
: a comma-separated list of IP address ranges to be included in exporting to the hub—up to 16 CIDR ranges—such as10.1.0.0/16, 192.168.0.0/24, 172.16.1.1/32
.GROUP_NAME
: the group this spoke belongs to—for example,center
oredge
. This field is required for spoke groups that use star topology. If using the star topology, you must place the producer VPC spoke in the same group as the existing consumer VPC spoke. For more information about spoke groups, see Spoke groups.
API
To create a producer VPC spoke, use the
networkconnectivity.spokes.create
method.
POST https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/spokes/SPOKE_NAME { "hub":"HUB_NAME", "linkedProducerVpcNetwork": { "network": "CONSUMER_VPC_URI", "peering_name": "servicenetworking-googleapis-com", "include_export_ranges": "[INCLUDE_CIDR_RANGE]", "exclude_export_ranges": "[EXCLUDE_CIDR_RANGE]", "group": "GROUP_NAME" }, }
The peering_name
field must be set to servicenetworking-googleapis-com
.
Replace the following values:
PROJECT_ID
: the project ID of the project that contains the new spoke.HUB_NAME
: the name of the hub that you are attaching the spoke to.SPOKE_NAME
: the name of the spoke that you are creating.CONSUMER_VPC_URI
: the VPC network that consumes services from the producer through a VPC Network Peering connection. Google Cloud identifies the producer VPC network through the peering connection. The consumer network that you enter must also be a spoke in the hub. You can enter the full or relative URI. The following example shows the relative URI:projects/PROJECT_ID/global/networks/NETWORK_NAME
.[INCLUDE_CIDR_RANGE]
: a comma-separated list of IP address ranges to be included in exporting to the hub—up to 16 CIDR ranges—such as10.1.0.0/16, 192.168.0.0/24, 172.16.1.1/32
. The specified ranges must have a longer prefix or be equal to the individually configured subnets within the producer VPC network.[EXCLUDE_CIDR_RANGE]
: a comma-separated list of IP address ranges to be excluded from exporting to the hub—up to 16 CIDR ranges—such as10.1.0.0/16, 192.168.0.0/24, 172.16.1.1/32
.GROUP_NAME
: the group that this spoke belongs to. Supported values aredefault
for a mesh topology hub andcenter
oredge
for a star topology hub. This field is required for spoke groups that use star topology. If using the star topology, you must place the producer VPC spoke in the same group as the existing consumer VPC spoke. For more information about spoke groups, see Spoke groups.
Create a Router appliance spoke
If you are using a Router appliance spoke to connect to sites outside of Google Cloud, use the following guidance:
Unlike VLAN attachments and VPN spokes, a Router appliance spoke doesn't have to be associated with a single location outside of Google Cloud. However, because router appliance instances are regional resources, we recommend that you configure them to receive data from nearby locations.
If you configure multiple router appliance instances to receive data from the same set of sites, we recommend that you associate those instances with the same spoke.
If you are using a Router appliance spoke for site-to-site data transfer, use the following guidance:
- If you link multiple router appliance instances to a spoke, be aware that Network Connectivity Center doesn't provide site-to-site data transfer between those instances. To use site-to-site data transfer, you must set up multiple spokes. In response, Network Connectivity Center permits data transfer between those spokes.
After you create a Router appliance spoke, you must set up BGP peering between the router appliance instance and a Cloud Router located in the same region. For details, see Create router appliance instances.
For information about configuring the resources that are required to create a Router appliance spoke, see the following documentation:
- Create router appliance instances
- Router appliance overview
- Cloud Router documentation
- Compute Engine (VM) documentation
Console
Enter basic spoke details
- In the Google Cloud console, go to the Network Connectivity Center page. Go to Network Connectivity Center
- In the project menu, select a Google Cloud project.
- Click the Spokes tab.
- Click Add spokes.
- In the New spoke form, set the Spoke type.
- Enter a Spoke name and optionally, a Description.
- Select the Region field for the new spoke.
- Under Site-to-site data transfer, select On or Off. If the region you selected does not support data transfer, the field is disabled. For more information about this use case, see Site-to-site data transfer overview.
- In the VPC network list, select a network. If you have more than one spoke that uses the data transfer feature, all of these spokes must be in the same VPC network. So if you have already created a spoke that uses data transfer, the VPC network value is prepopulated and cannot be changed.
Enter router appliance details
- Choose a router appliance instance:
- Click Add instance.
- From the Instances drop-down menu, select an existing router appliance instance.
- Optional: To propagate subnets that are advertised to the hub to hybrid spokes, under Hybrid spoke filter, click Include all IPv4 ranges from hub to spoke.
- To add more router appliance instances to this spoke, repeat the preceding step. When you have finished, click Done and continue to Save your spoke.
Save your spoke
- If you want to add more spokes, click Add spoke and begin the process again, starting with entering a Spoke name.
- When you are finished adding spokes, click Create. The Network Connectivity Center page updates to show details about the spokes that you created.
gcloud
To create a Router appliance spoke, use the
gcloud network-connectivity spokes linked-router-appliances create
command.
For example, to create a spoke that has two router appliance instances and uses site-to-site data transfer, run the following command.
To enable import of subnet IP address ranges to this spoke
(Preview), use the
--include-import-ranges
flag.
gcloud network-connectivity spokes linked-router-appliances create NAME \ --hub=HUB_NAME \ --description="DESCRIPTION" \ --router-appliance=instance="ROUTER_APPLIANCE_URI",ip=IP_ADDRESS \ --router-appliance=instance="ROUTER_APPLIANCE_URI_2",ip=IP_ADDRESS_2 \ --region=REGION \ --labels="KEY"="VALUE" \ --site-to-site-data-transfer \ --include-import-ranges=[INCLUDE_IMPORT_RANGES,...]
Replace the following values:
NAME
: the name of the spokeHUB_NAME
: the name of the hubDESCRIPTION
: optional text that describes the spokeROUTER_APPLIANCE_URI
: the URI of the first router appliance instance—for example,https://www.googleapis.com/compute/projects/PROJECT_ID/zones/ZONE/instances/INSTANCE_NAME
IP_ADDRESS
: the internal IP address of the first router appliance instanceROUTER_APPLIANCE_URI_2
: the URI of the second router appliance instanceIP_ADDRESS_2
: the internal IP address of the second router appliance instanceREGION
: the Google Cloud region where the spoke is located—for example,us-west1
KEY
: the key in the key-value pair for the optional label textVALUE
: the value in the key-value pair for the optional label text[INCLUDE_IMPORT_RANGES,...]
: the IP address ranges that are specified to be imported from hub subnets. You can only addALL_IPV4_RANGES
to the list. If it is empty, the spoke doesn't import any subnets from the hub.
Use the site-to-site-data-transfer
flag if you want to enable data
transfer for the spoke. For more information about this use case, see
Site-to-site data transfer overview.
API
To create a Router appliance spoke, use the
networkconnectivity.spokes.create
method.
For example, to create a spoke that contains two router appliance
instances, use the following request:
POST https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/REGION/spokes/SPOKE_NAME { "hub": "HUB_NAME", "labels": {"KEY": "VALUE"}, "linkedRouterApplianceInstances": { "instances": [ { "virtualMachine": "ROUTER_APPLIANCE_URI", "ipAddress": "IP_ADDRESS", }, { "virtualMachine": "ROUTER_APPLIANCE_URI_2, "ipAddress": "IP_ADDRESS_2", } ], "siteToSiteDataTransfer": BOOLEAN "includeImportRanges": [INCLUDE_IMPORT_RANGES,...] } }
Replace the following values:
PROJECT_ID
: the project ID of your projectREGION
: the Google Cloud region where you want to locate the spoke—for example,us-west1
SPOKE_NAME
: the name for the spokeHUB_NAME
: the name of the hub that you are attaching the spoke toKEY
: the key in the key-value pair for the optional label textVALUE
: the value in the key-value pair for the optional label textROUTER_APPLIANCE_URI
: the URI of the first router appliance instance—for example,https://www.googleapis.com/compute/projects/PROJECT_ID/zones/ZONE/instances/INSTANCE_NAME
IP_ADDRESS
: the internal IP address of the first router appliance instanceROUTER_APPLIANCE_URI_2
: the URI of the second router appliance instanceIP_ADDRESS_2
: the internal IP address of the second router appliance instance[INCLUDE_IMPORT_RANGES,...]
: the IP address ranges that are specified to be imported from hub subnets. You can only addALL_IPV4_RANGES
to the list. If it is empty, the spoke doesn't import any subnets from the hub.
Create a VLAN attachment spoke
Before creating VLAN attachment spokes, consider the following guidelines:
- If you have either Dedicated Interconnect or Partner Interconnect connections configured in a redundant configuration to the same site, you should configure both connections together as a single spoke. The redundant VLAN attachments associated with these Interconnect connections must be located in the same Google Cloud region. For more information about redundant configurations, see Best practices for Cloud Interconnect.
- If you want to use Interconnect connections from different regions, you must configure them as different spokes.
For information about configuring the resources that are required to create a VLAN attachment spoke, see the following documentation:
For information about verifying VLAN attachment resources, see the following documentation:
- Getting Cloud Interconnect diagnostics
- Viewing Dedicated Interconnect details
- Viewing VLAN attachments
Console
Enter basic spoke details
- In the Google Cloud console, go to the Network Connectivity Center page. Go to Network Connectivity Center
- In the project menu, select a Google Cloud project.
- Click the Spokes tab.
- Click Add spokes.
- In the New spoke form, set the Spoke type.
- Enter a Spoke name and optionally, a Description.
- Select the Region field for the new spoke.
- Under Site-to-site data transfer, select On or Off. If the region you selected does not support data transfer, the field is disabled. For more information about this use case, see Site-to-site data transfer overview.
- In the VPC network list, select a network. If you have more than one spoke that uses the data transfer feature, all of these spokes must be in the same VPC network. So if you have already created a spoke that uses data transfer, the VPC network value is prepopulated and cannot be changed.
Enter VLAN attachment details
- Choose a VLAN attachment:
- Click Add attachment.
- From the VLAN attachment drop-down menu, select an existing attachment.
- Optionally, to propagate subnets that are advertised to the hub to hybrid spokes, under Hybrid spoke filter, click Include all IPv4 ranges from hub to spoke.
- To add more attachments to this spoke, repeat the preceding step. When you have finished, click Done and continue to Save your spoke.
Save your spoke
- If you want to add more spokes, click Add spoke and begin the process again, starting with entering a Spoke name.
- When you are finished adding spokes, click Create. The Network Connectivity Center page updates to show details about the spokes that you created.
gcloud
To create a VLAN attachment spoke, use the
gcloud network-connectivity spokes linked-interconnect-attachments create
command.
For example, to create a spoke that has two VLAN attachments and uses site-to-site data transfer, run the following command.
To enable import of subnet IP address ranges to this spoke
(Preview), use the
--include-import-ranges
flag.
gcloud network-connectivity spokes linked-interconnect-attachments create SPOKE_NAME \ --hub=HUB_NAME \ --description="DESCRIPTION" \ --interconnect-attachments=VLAN_ATTACHMENT_NAME,VLAN_ATTACHMENT_NAME_2 \ --region=REGION \ --labels="KEY"="VALUE" \ --site-to-site-data-transfer \ --include-import-ranges=[INCLUDE_IMPORT_RANGES,...]
Replace the following values:
SPOKE_NAME
: the name for the spokeHUB_NAME
: the name of the hub, in URI format, that you are attaching the spoke to—for example,
projects/myproject/locations/global/hubs/us-west-to-uk
DESCRIPTION
: optional text that describes the spokeVLAN_ATTACHMENT_NAME
: the name of the first VLAN attachment to add to the spokeVLAN_ATTACHMENT_NAME_2
: the name of the second VLAN attachment; if you include a second attachment, make sure you omit a space between the comma and the name of the attachmentREGION
: the Google Cloud region where the spoke is locatedKEY
: the key in the key-value pair for the label textVALUE
: the value in the key-value pair for the label text[INCLUDE_IMPORT_RANGES,...]
: the IP address ranges that are specified to be imported from hub subnets. You can only addALL_IPV4_RANGES
to the list. If it is empty, the spoke doesn't import any subnets from the hub.
Use the site-to-site-data-transfer
flag if you want to enable data
transfer for the spoke. For more information about this use case, see
Site-to-site data transfer overview.
API
To create a VLAN attachment spoke, use the
networkconnectivity.spokes.create
method.
For example, to create a spoke that contains two VLAN attachments and has
the import of subnet IP address ranges to this spoke enabled (Preview), use the following request:
POST https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/REGION/spokes/SPOKE_NAME { "hub": "HUB_NAME", "labels": {"KEY": "VALUE"}, "linkedInterconnectAttachments": { "uris": [ "VLAN_ATTACHMENT_NAME", "VLAN_ATTACHMENT_NAME_2" ], "siteToSiteDataTransfer": BOOLEAN "includeImportRanges": [INCLUDE_IMPORT_RANGES,...] } }
Replace the following values:
PROJECT_ID
: the project ID of your projectREGION
: the Google Cloud region where you want to locate the spoke—for example,us-west1
SPOKE_NAME
: the name for the spokeHUB_NAME
: the name of the hub that you are attaching the spoke toKEY
: the key in the key-value pair for the optional label textVALUE
: the value in the key-value pair for the optional label textVLAN_ATTACHMENT_NAME
: the name of the first VLAN attachment to add to the spokeVLAN_ATTACHMENT_NAME_2
: the name of the second VLAN attachmentBOOLEAN
: a value that determines whether site-to-site data transfer is enabled for this spoke; for more information about this use case, see Site-to-site data transfer overview[INCLUDE_IMPORT_RANGES,...]
: the IP address ranges that are specified to be imported from hub subnets. You can only addALL_IPV4_RANGES
to the list. If it is empty, the spoke doesn't import any subnets from the hub.
Create a VPN spoke
Before creating VPN spokes, consider the following guidelines:
When linking HA VPN tunnels to a spoke, we recommend that all tunnels connecting to a single site be configured together as a single spoke. The reverse is also true; two tunnels connecting to two different sites should be attached to different spokes. For example, suppose you want to connect an office in Dallas with an office in Tokyo. The tunnel that connects to Dallas must be part of a different spoke than the one that connects your VPC network to Tokyo.
When linking HA VPN tunnels to a spoke, you can't connect HA VPN gateways in different regions to each other in the same Google Cloud project. This is a limitation of HA VPN, not a limitation of Network Connectivity Center.
For information about configuring the resources that are required to create a VPN spoke, see the following documentation:
For information about verifying VPN resources, see Checking HA VPN status.
Console
Enter basic spoke details
- In the Google Cloud console, go to the Network Connectivity Center page. Go to Network Connectivity Center
- In the project menu, select a Google Cloud project.
- Click the Spokes tab.
- Click Add spokes.
- In the New spoke form, set the Spoke type.
- Enter a Spoke name and optionally, a Description.
- Select the Region field for the new spoke.
- Under Site-to-site data transfer, select On or Off. If the region you selected does not support data transfer, the field is disabled. For more information about this use case, see Site-to-site data transfer overview.
- In the VPC network list, select a network. If you have more than one spoke that uses the data transfer feature, all of these spokes must be in the same VPC network. So if you have already created a spoke that uses data transfer, the VPC network value is prepopulated and cannot be changed.
Enter VPN tunnel details
- Set the Spoke type drop-down list to VPN tunnels.
- Select the Region for the spoke.
- Choose a tunnel:
- Click Add tunnel.
- From the VPN tunnels drop-down menu, select an existing tunnel.
- Optionally, to propagate subnets that are advertised to the hub to hybrid spokes, under Hybrid spoke filter, click Include all IPv4 ranges from hub to spoke.
- To add more tunnels to this spoke, repeat the preceding step. When you have finished, click Done and continue to Save your spoke.
Save your spoke
- If you want to add more spokes, click Add spoke and begin the process again, starting with entering a Spoke name.
- When you are finished adding spokes, click Create. The Network Connectivity Center page updates to show details about the spokes that you created.
gcloud
To create a spoke that contains an HA VPN tunnel, use the
gcloud network-connectivity spokes linked-vpn-tunnels create
command.
For example, to create a spoke that has two HA VPN tunnels and uses site-to-site data transfer, enter the following command.
To enable import of subnet IP address ranges to this spoke
(Preview), use the
--include-import-ranges
flag.
gcloud network-connectivity spokes linked-vpn-tunnels create SPOKE_NAME \ --hub=HUB_NAME \ --description="DESCRIPTION" \ --vpn-tunnels=TUNNEL_NAME,TUNNEL_NAME_2 \ --region=REGION \ --labels="KEY"="VALUE" \ --site-to-site-data-transfer \ --include-import-ranges=[INCLUDE_IMPORT_RANGES,...]
Replace the following values:
SPOKE_NAME
: the name for the spokeHUB_NAME
: the name of the hub, in URI format, that you are attaching the spoke to—for example,
projects/PROJECT_ID/locations/global/hubs/us-west-to-uk
DESCRIPTION
: optional text that describes the spoke—for example,us-vpn-spoke
TUNNEL_NAME
: the name of the first HA VPN tunnel to add to the spokeTUNNEL_NAME_2
: the name of the second HA VPN tunnel; if you use a second tunnel, make sure you omit a space between the comma and the name of second tunnelREGION
: the Google Cloud region where the spoke is locatedKEY
: the key in the key-value pair for the optional label textVALUE
: the value in the key-value pair for the optional label text[INCLUDE_IMPORT_RANGES,...]
: the IP address ranges that are specified to be imported from hub subnets. You can only addALL_IPV4_RANGES
to the list. If it is empty, the spoke doesn't import any subnets from the hub.
Use the site-to-site-data-transfer
flag if you want to enable data
transfer for the spoke. For more information about this use case, see
Site-to-site data transfer overview.
API
To create a VPN spoke, use the
networkconnectivity.spokes.create
method.
For example, to create a spoke that contains two
HA VPN tunnels and has include import subnet IP
address ranges enabled, use the following request:
POST https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/REGION/spokes/SPOKE_NAME { "hub": "HUB_NAME", "labels": {"KEY": "VALUE"}, "linkedVpnTunnels": { "uris": [ "TUNNEL_NAME", "TUNNEL_NAME_2" ], "siteToSiteDataTransfer": BOOLEAN, "includeImportRanges": [INCLUDE_IMPORT_RANGES,...] } }
Replace the following values:
PROJECT_ID
: the project ID of your projectREGION
: the Google Cloud region where you want to locate the spoke—for example,us-west1
SPOKE_NAME
: the name for the spokeHUB_NAME
: the name of the hub that you are attaching the spoke toKEY
: the key in the key-value pair for the optional label textVALUE
: the value in the key-value pair for the optional label textTUNNEL_NAME
: the name of the first HA VPN tunnel to add to the spokeTUNNEL_NAME_2
: the name of the second HA VPN tunnelBOOLEAN
: a value that determines whether site-to-site data transfer is enabled for this spoke; for more information about this use case, see Site-to-site data transfer overview[INCLUDE_IMPORT_RANGES,...]
: the IP address ranges that are specified to be imported from hub subnets. You can only addALL_IPV4_RANGES
to the list. If it is empty, the spoke doesn't import any subnets from the hub.
List spokes
When you create a spoke, it is always associated with a hub. You can use the
list spokes
operation to list all spokes within a single project. This set of
commands lists spokes in the specified region. See also
Describing a hub.
Console
In the Google Cloud console, go to the Network Connectivity Center page.
In the project menu, select the project that contains the hub for which you want to list the existing spokes.
On the Hub tab, select the hub.
Click the Spoke tab. All the spokes attached to that hub are listed.
Use the Filter field to sort spokes by name, type, status, ID, region, resource count, BGP sessions, or description.
To view details for a specific spoke, click the spoke name.
gcloud
To list existing spokes, use the
gcloud network-connectivity spokes list
command.
gcloud network-connectivity spokes list \ --region=LOCATION
Replace LOCATION
with the appropriate region.
To list existing VPC spokes, use the same command with the
--global
flag:
gcloud network-connectivity spokes list \ --global
Filters (Preview)
To list all VPC spokes that belong to a specific group, use the
gcloud network-connectivity hubs list-spokes
command and specify the group
filter.
gcloud network-connectivity hubs list-spokes HUB_NAME \ --filter="group:GROUP_NAME"
Replace the following values:
HUB_NAME
: the name of the hub for which you want to list spokesGROUP_NAME
: the name of the spoke group. Supported values aredefault
for mesh topology andcenter
oredge
for a star topology hub.
To list all VPC spokes associated with a hub that are pending
review by the hub administrator, use the same command and specify the reason
filter.
gcloud network-connectivity hubs list-spokes HUB_NAME \ --filter="reason:PENDING_REVIEW"
Replace HUB_NAME
with the name of the hub for which you
want to list spokes.
To list all inactive VPC spokes associated with a hub, use the
same command and specify the state
filter.
gcloud network-connectivity hubs list-spokes HUB_NAME \ --filter="state:INACTIVE"
Replace HUB_NAME
with the name of the hub for which you
want to list inactive spokes.
API
To list existing spokes, use the
networkconnectivity.spokes.list
method.
GET https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/LOCATION/spokes
Replace the following values:
PROJECT_ID
: the project ID of the project that contains the spokes to listLOCATION
: the region where the spoke is located—for example,us-west1
orglobal
for VPC spokes
To get an aggregated list of existing spokes, where the values of multiple
rows are grouped together to form a single summary value, use the
networkconnectivity.spokes.list
method
with a hyphen (-
) after locations
as a wildcard.
GET https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/-/spokes
Describe a spoke
To get detailed information about an existing spoke, use the following guidance.
Console
In the Google Cloud console, go to the Network Connectivity Center page.
In the project menu, select a project.
On the Hub tab, select the hub. All the spokes attached to that hub are listed.
To view details for a specific spoke, do one of the following:
- In the Spoke name column, select a spoke to view the Spoke details page.
- On the Spokes tab, click the Spoke name column, and then select a spoke to view the Spoke details page.
gcloud
To describe a spoke, use the
gcloud network-connectivity spokes describe
command.
gcloud network-connectivity spokes describe SPOKE_NAME \ --region=LOCATION
Replace the following values:
SPOKE_NAME
: the name of the spokeLOCATION
: the region where the spoke is located
To describe a VPC spoke, use the same command with the
--global
flag:
gcloud network-connectivity spokes describe SPOKE_NAME \ --global
Replace SPOKE_NAME
with the name of the spoke.
API
To describe a spoke, use the
networkconnectivity.spokes.get
method.
GET https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/LOCATION/spokes/SPOKE_NAME
Replace the following values:
PROJECT_ID
: the project ID of the project that contains the spokeLOCATION
: the region where the spoke is located—for example,us-west1
orglobal
for VPC spokesSPOKE_NAME
: the name of the spoke
Update a spoke
After a spoke has been created, you can update the following:
- The spoke's description
- The labels applied to the spoke; for information about labels, see Requirements for labels
- If the spoke is a Router appliance spoke, you can change its underlying resources; however, the new resources must be in the same VPC network as the original resources
- The IP address ranges that are specified to be imported from hub subnets
Console
To change the resources used by a Router appliance spoke, complete the following steps:
In the Google Cloud console, go to the Network Connectivity Center page.
In the project menu, select a project.
Click the Spokes tab.
Click the name of the spoke that you want to modify.
Do either of the following:
- To add resources, click Add instances and follow the prompts to select one or more VMs. When you have finished, click OK.
- To remove resources, select the VMs that you want to remove and click Remove instances. In the confirmation dialog, click OK.
gcloud
To update a spoke, use one of the following commands:
gcloud network-connectivity spokes linked-router-appliances update
gcloud network-connectivity spokes linked-interconnect-attachments update
gcloud network-connectivity spokes linked-vpn-tunnels update
gcloud network-connectivity spokes linked-vpc-network update
gcloud network-connectivity spokes linked-producer-vpc-network update
You can update the IP address ranges that are specified to be imported
from hub subnets by adding ALL_IPV4_RANGES
to the list for all hybrid
spoke types.
Update description, labels, and include IP address ranges
To update a Router appliance spoke's description, label, and include IP address ranges, run the following command:
gcloud network-connectivity spokes linked-router-appliances update SPOKE_NAME \ --description="DESCRIPTION" \ --region=LOCATION \ --update-labels="KEY"="VALUE" \ --include-import-ranges="[INCLUDE_IMPORT_RANGES,...]"
Replace the following values:
SPOKE_NAME
: the name of the spoke to updateDESCRIPTION
: a new description for the spokeLOCATION
: the Google Cloud region where the spoke is located—for example,us-west1
orglobal
KEY
: the key in the key-value pairVALUE
: the value in the key-value pair[INCLUDE_IMPORT_RANGES,...]
: the IP address ranges that are specified to be imported from hub subnets. You can only addALL_IPV4_RANGES
to the list. If it is empty, the spoke doesn't import any subnets from the hub.
Update a Router appliance spoke's underlying resources
If needed, you can update a Router appliance spoke to use a different router appliance instance, as long as the new resource is in the same VPC network as the original one. To replace the existing resource with a new one, run the following command:
gcloud network-connectivity spokes linked-router-appliances update SPOKE_NAME \ --region=LOCATION \ --router-appliance=instance="ROUTER_APPLIANCE_URI",ip=IP_ADDRESS
Replace the following values:
SPOKE_NAME
: the name of the spokeLOCATION
: the Google Cloud region where the spoke is located—for example,us-west1
ROUTER_APPLIANCE_URI
: the URI of the new router appliance instance to associate with the spoke—for example,"https://www.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/instances/INSTANCE_NAME"
IP_ADDRESS
: the internal IP address of the new router appliance instance
API
To update a spoke, use the
networkconnectivity.spokes.patch
method.
Update description and labels
To update a Router appliance spoke's description and label, use the following request:
PATCH https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/REGION/spokes/SPOKE_NAME { "description": "DESCRIPTION" "labels": { "KEY": "VALUE" "includeImportRanges": [INCLUDE_IMPORT_RANGES,...] } }
Replace the following values:
PROJECT_ID
: the project ID of the project that contains the spokeREGION
: the region where the spoke is located—for example,us-west1
SPOKE_NAME
: the name of the spoke to updateDESCRIPTION
: a new description for the spokeKEY
: the key in the key-value pairVALUE
: the value in the key-value pair[INCLUDE_IMPORT_RANGES,...]
: the IP address ranges that are specified to be imported from hub subnets. You can only addALL_IPV4_RANGES
to the list. If it is empty, the spoke doesn't import any subnets from the hub.
Update a Router appliance spoke's underlying resources
If needed, you can update a Router appliance spoke to use a different router appliance instance, as long as the new resource is in the same VPC network as the original one. To replace the existing resource with a new one, use the following request:
PATCH https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/REGION/spokes/SPOKE { "linkedRouterApplianceInstances": { "instances": [ { "virtualMachine": "ROUTER_APPLIANCE_URI", "ipAddress": "IP_ADDRESS", } ] } }
Replace the following values:
PROJECT_ID
: the project ID of the project that contains the spokeREGION
: the region where the spoke is located—for example,us-west1
SPOKE
: the name of the spokeROUTER_APPLIANCE_URI
: the URI of the new router appliance instance to associate with the spoke—for example,"https://www.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/instances/INSTANCE_NAME"
IP_ADDRESS
: the internal IP address of the new router appliance instance
Delete a spoke
When you delete a spoke, you also detach the resources from that spoke. That is, deleting a spoke doesn't delete the resources; it only disassociates them from the spoke.
If you want to delete a VPC spoke that is associated with a producer VPC spoke (Preview), you must first delete the producer VPC spoke.
Console
In the Google Cloud console, go to the Network Connectivity Center page.
In the project menu, select a project.
Click the Spokes tab.
View the list of Spoke names for the project.
Select the spokes to delete.
Click
Delete spokes.In the confirmation dialog, do one of the following:
- Click Cancel if you don't want to delete the spokes.
- Click Delete to delete the spokes.
gcloud
To delete a spoke, use the
gcloud network-connectivity spokes delete
command.
gcloud network-connectivity spokes delete SPOKE_NAME \ --region=REGION
Replace the following values:
SPOKE_NAME
: the name of the spoke to deleteREGION
: the region where the spoke is located; this option is required in addition to the region listed in the full spoke name. If you are deleting a VPC spoke, you must specify--global
.
API
To delete an existing spoke, use the
networkconnectivity.spokes.delete
method.
DELETE https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/LOCATION/spokes/SPOKE_NAME
Replace the following values:
PROJECT_ID
: the project ID of the project that contains the spoke to deleteLOCATION
: the region where the spoke is located—for example,us-west1
or--global
for VPC spokesSPOKE_NAME
: the name of the spoke to delete
What's next
- To view a list of partners whose solutions are integrated with Network Connectivity Center, see Network Connectivity Center partners.
- To find solutions for Router appliance issues, see Troubleshooting.
- To get details about API and Google Cloud CLI commands, see
APIs and reference.