Skip to main content

Set up VPC peering on UpCloud

Network peerings enable traffic between two networks from different accounts or platforms.

A peering needs to be established from both connecting components to be activated.

About establishing Aiven-Upcloud peering

Peering Aiven and UpCloud networks requires establishing the connection on both ends: Aiven and UpCloud.

  • To set up a peering from Aiven to UpCloud, you can use Aiven Console to create a VPC for your Aiven project and add a peering connection to UpCloud. For this purpose, identify the UpCloud SDN network UUID first.
  • To set up a peering from UpCloud to Aiven, you can use UpCloud API. Since the API takes UUIDs of both networks as attributes, identify the network UUIDs before calling the API.

Limitations

  • Peering connections are only supported between networks of type private.
  • You cannot initiate a peering between two networks with overlapping CIDR ranges.
  • The networks to be peered need to be in the same cloud zone.
important

Make sure you only create peerings between accounts, platforms, or networks you trust. There is no limit on what traffic can flow between the peered components. The server firewall has no effect on private type networks.

Prerequisites

Get UpCloud SDN network UUID

Before establishing a peering connection from Aiven to UpCloud, you need to find your UpCloud SDN network UUID.

To check the UpCloud SDN network UUID, send a request to get network details UpCloud API endpoint. In the response, you'll get the network's UUID.

Set up VPC peering from Aiven

You can establish a peering connection from Aiven to UpCloud using Aiven Console.

  1. Log in to Aiven Console, navigate to the organization and project you want to use.
  2. On the Services page, select VPCs from the sidebar.
  3. On the Virtual private clouds page, select the ID of the VPC connection you want to use for the peering.
  4. On the VPC peering connections page, in the Add peering connection section, populate Peer network ID field with your UpCloud SDN network UUIDs.
  5. Select Add peering connection. This adds a new connection to the VPC peering connections list.
  6. Wait until you see the peer_pending state in the State column of the of the VPC peering connections table. At this point, the Aiven VPC network UUID should be available in the Aiven network ID column of the of the VPC peering connections table.

Set up VPC peering from UpCloud

To establish a VPC peering from UpCloud to Aiven, use UpCloud API to send the following request:

POST /1.3/network-peering HTTP/1.1
{
"network_peering": {
"configured_status": "active",
"name": "NAME_OF_YOUR_PEERING",
"network": {
"uuid": "UPCLOUD_SDN_NETWORK_UUID"
},
"peer_network": {
"uuid": "AIVEN_VPC_NETWORK_UUID"
}
}
}

Attributes

AttributeAccepted valueDefault valueRequiredDescriptionExample value
configured_statusactive or disabledactiveNoControls whether the peering is administratively up or down.active
nameString of 1-255 charactersNoneYesDescriptive name for the peeringpeering upcloud->aiven
network.uuidValid network UUIDNoneYesSets the local network of the peering. Use the UUID you acquired in Get UpCloud SDN network UUID.03126dc1-a69f-4bc2-8b24-e31c22d64712
peer_network.uuidValid network UUIDNoneYesSets the peer network of the peering. Use the UUID you acquired in Set up VPC peering from Aiven.03585987-bf7d-4544-8e9b-5a1b4d74a333

Expected response

note

The sample response provided describes a peering established one way only.

If your peering API request is successful, you can expect a response similar to the following:

HTTP/1.1 201 Created
{
"network_peering": {
"configured_status": "active",
"name": "NAME_OF_YOUR_PEERING",
"network": {
"ip_networks": {
"ip_network": [
{
"address": "192.168.0.0/24",
"family": "IPv4"
},
{
"address": "fc02:c4f3::/64",
"family": "IPv6"
}
]
},
"uuid": "UPCLOUD_SDN_NETWORK_UUID"
},
"peer_network": {
"uuid": "AIVEN_VPC_NETWORK_UUID"
},
"state": "pending-peer",
"uuid": "PEERING_UUID"
}
}

Error responses

HTTP statusError codeDescription
409 ConflictLOCAL_NETWORK_NO_ROUTERThe local network has no router.
404 Not foundNETWORK_NOT_FOUNDThe local network was not found.
404 Not foundPEER_NETWORK_NOT_FOUNDThe peer network was not found.
409 ConflictPEERING_CONFLICTThe peering already exists.

Renew a DHCP lease

You only need to take this step if any of your VMs has been created before setting up the network peering. In this case, refresh the Dynamic Host Configuration Protocol (DHCP) lease for a relevant network interface to get new routes.

warning

A peering connection between an Aiven VPC and VMs created before the peering setup won't work unless you refresh the DHCP lease for a relevant network interface.

To refresh the DHCP lease for a network interface, run the following commands:

  1. To clear the existing DHCP lease

    dhclient -r NETWORK_INTERFACE_NAME
  2. To request a renewal of the DHCP lease

    dhclient NETWORK_INTERFACE_NAME