Features Components Pricing Regions Overview
Features

Your Network, Your Rules

Complete isolation, granular control, and flexible connectivity between your UBQT resources and your existing infrastructure.

🏗️

VPC / Private Networks

Create isolated private networks for your resources. Each VPC is a dedicated network environment.

🧩

Subnets

Segment your VPCs into public and private subnets. Control routing between each segment.

🔥

Firewall / Security Groups

Granular filtering rules per resource. Stateful inbound and outbound control.

⚖️

Managed Load Balancer

L4/L7 load distribution with health checks, TLS termination, and sticky sessions.

🔐

VPN site-to-site

Connect your on-premises infrastructure to your UBQT VPC via an encrypted IPSec VPN tunnel.

🔗

VPC Peering

Interconnect your VPCs to allow communication between environments (dev, staging, prod).

🌍

Static Public IPs

Reserved IPv4 addresses you can assign and reassign between your resources.

📊

Flow Logs

Network flow logs for auditing, diagnostics, and compliance of your infrastructure.

Components

Typical Network Architecture

Here is how the components come together to create a complete network infrastructure.

┌─────────────────────────────────────────────────────┐
VPC: production (10.0.0.0/16)                      

┌──────────────────┐ ┌──────────────────┐
Public Subnet │ │ Private Subnet
10.0.1.0/24 │ │ 10.0.2.0/24
│ │
☁ Load Balancer │ │ 🖥 VMs App
🌍 Public IP │ │ 🗄 Database
│ │ ⚡ Redis cache
└──────────────────┘ └──────────────────┘

🔥 Security Groups 🔐 VPN → On-premise
└─────────────────────────────────────────────────────┘
Pricing

Free Network, Add-ons à la Carte

All prices in CAD, before taxes (GST/QST).

ComponentPrice (CAD)
Private Network (UVPC)Free
SubnetsFree
Inter-UVPC PeeringFree
Firewall RulesFree
Floating IP (IPv4)$0.003/h (≈ $2.19/mo)
Load Balancer S — 200 Mbps$0.010/h (≈ $7.30/mo)
Load Balancer M — 1 Gbps$0.025/h (≈ $18.25/mo)
Load Balancer L — 4 Gbps$0.068/h (≈ $49.64/mo)

Private traffic between UBQT instances is always free, regardless of region.

Regions

Canadian Network

VPC available in all UBQT regions. Inter-region peering available in the future.

Quebec Available at Launch

CAN-QC01

Quebec Available at Launch

CAN-QC02

Ontario Planned

CAN-ON01
Overview

Your First VPC in 3 Steps

Here is what creating a complete network will look like.

1

Create a VPC

Define your address space and subnets.

$ ubqt uvpc create --name production --cidr 10.0.0.0/16 --region can-qc01
VPC created — production (10.0.0.0/16)

$ ubqt uvpc subnet create --vpc production --name public --cidr 10.0.1.0/24 --public
Subnet created — public (10.0.1.0/24)

$ ubqt uvpc subnet create --vpc production --name private --cidr 10.0.2.0/24
Subnet created — private (10.0.2.0/24)
2

Configure Security Rules

Define which traffic flows are allowed.

$ ubqt uvpc firewall add --vpc production --direction inbound --port 443 --source 0.0.0.0/0
Rule added — HTTPS from Internet

$ ubqt uvpc firewall add --vpc production --direction inbound --port 5432 --source 10.0.1.0/24
Rule added — PostgreSQL from public subnet
3

Deploy your resources in the VPC

Your VMs, databases, and other services integrate directly.

$ ubqt vm create --name web-01 --vpc production --subnet public --size vm.standard
VM created in VPC production / public subnet — 10.0.1.10

Ready to configure your network?

Create your first VPC and isolate your resources in minutes.

Configure a network →