
Hybrid Cloud Networking
- 8.3k installs
- 38.3k repo stars
- Updated July 22, 2026
- wshobson/agents
hybrid-cloud-networking is an agent skill that Configure secure, high-performance connectivity between on-premises infrastructure and cloud platforms using VPN and dedicated connections. Use when building hy.
About
Configure secure high-performance connectivity between on-premises infrastructure and cloud platforms using VPN and dedicated connections Use when building hybrid cloud architectures connecting data centers to cloud or implementing secure cross-premises networking name hybrid-cloud-networking description Configure secure high-performance connectivity between on-premises infrastructure and cloud platforms using VPN and dedicated connections Use when building hybrid cloud architectures connecting data centers to cloud or implementing secure cross-premises networking Hybrid Cloud Networking Configure secure high-performance connectivity between on-premises and cloud environments using VPN Direct Connect ExpressRoute Interconnect and FastConnect Purpose Establish secure reliable network connectivity between on-premises data centers and cloud providers AWS Azure GCP OCI When to Use Connect on-premises to cloud Extend datacenter to cloud Implement hybrid active-active setups Meet compliance requirements Migrate to cloud gradually Connection Options AWS Connectivity 1 Site-to-Site VPN IPSec VPN over internet Up to 1 25 Gbps per tunnel Cost-effective for moderate bandwidth Higher latency.
- Hybrid Cloud Networking
- Connect on-premises to cloud
- Extend datacenter to cloud
- Implement hybrid active-active setups
- Meet compliance requirements
Hybrid Cloud Networking by the numbers
- 8,287 all-time installs (skills.sh)
- +163 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #89 of 1,041 Cloud & Infrastructure skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
hybrid-cloud-networking capabilities & compatibility
- Capabilities
- hybrid cloud networking · connect on premises to cloud · extend datacenter to cloud · implement hybrid active active setups · meet compliance requirements
- Use cases
- documentation
What hybrid-cloud-networking says it does
--- name: hybrid-cloud-networking description: Configure secure, high-performance connectivity between on-premises infrastructure and cloud platforms using VPN and dedicated connections.
Use when building hybrid cloud architectures, connecting data centers to cloud, or implementing secure cross-premises networking.
--- # Hybrid Cloud Networking Configure secure, high-performance connectivity between on-premises and cloud environments using VPN, Direct Connect, ExpressRoute, Interconnect, and FastConnect.
## Purpose Establish secure, reliable network connectivity between on-premises data centers and cloud providers (AWS, Azure, GCP, OCI).
npx skills add https://github.com/wshobson/agents --skill hybrid-cloud-networkingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 8.3k |
|---|---|
| repo stars | ★ 38.3k |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 22, 2026 |
| Repository | wshobson/agents ↗ |
What problem does hybrid-cloud-networking solve for developers using this skill?
Configure secure, high-performance connectivity between on-premises infrastructure and cloud platforms using VPN and dedicated connections. Use when building hybrid cloud architectures, connecting dat
Who is it for?
Developers who need hybrid-cloud-networking patterns described in the cached skill documentation.
Skip if: Skip when docs are empty or the task is outside the skill's documented scope.
When should I use this skill?
Configure secure, high-performance connectivity between on-premises infrastructure and cloud platforms using VPN and dedicated connections. Use when building hybrid cloud architectures, connecting dat
What you get
Actionable workflows and conventions from SKILL.md for hybrid-cloud-networking.
- hybrid connectivity architecture
- redundant circuit design
By the numbers
- Compares dedicated connectivity across 4 cloud providers: AWS, Azure, GCP, and OCI
Files
Hybrid Cloud Networking
Configure secure, high-performance connectivity between on-premises and cloud environments using VPN, Direct Connect, ExpressRoute, Interconnect, and FastConnect.
Purpose
Establish secure, reliable network connectivity between on-premises data centers and cloud providers (AWS, Azure, GCP, OCI).
When to Use
- Connect on-premises to cloud
- Extend datacenter to cloud
- Implement hybrid active-active setups
- Meet compliance requirements
- Migrate to cloud gradually
Connection Options
AWS Connectivity
1. Site-to-Site VPN
- IPSec VPN over internet
- Up to 1.25 Gbps per tunnel
- Cost-effective for moderate bandwidth
- Higher latency, internet-dependent
resource "aws_vpn_gateway" "main" {
vpc_id = aws_vpc.main.id
tags = {
Name = "main-vpn-gateway"
}
}
resource "aws_customer_gateway" "main" {
bgp_asn = 65000
ip_address = "203.0.113.1"
type = "ipsec.1"
}
resource "aws_vpn_connection" "main" {
vpn_gateway_id = aws_vpn_gateway.main.id
customer_gateway_id = aws_customer_gateway.main.id
type = "ipsec.1"
static_routes_only = false
}2. AWS Direct Connect
- Dedicated network connection
- 1 Gbps to 100 Gbps
- Lower latency, consistent bandwidth
- More expensive, setup time required
Reference: See references/direct-connect.md
Azure Connectivity
1. Site-to-Site VPN
resource "azurerm_virtual_network_gateway" "vpn" {
name = "vpn-gateway"
location = azurerm_resource_group.main.location
resource_group_name = azurerm_resource_group.main.name
type = "Vpn"
vpn_type = "RouteBased"
sku = "VpnGw1"
ip_configuration {
name = "vnetGatewayConfig"
public_ip_address_id = azurerm_public_ip.vpn.id
private_ip_address_allocation = "Dynamic"
subnet_id = azurerm_subnet.gateway.id
}
}2. Azure ExpressRoute
- Private connection via connectivity provider
- Up to 100 Gbps
- Low latency, high reliability
- Premium for global connectivity
GCP Connectivity
1. Cloud VPN
- IPSec VPN (Classic or HA VPN)
- HA VPN: 99.99% SLA
- Up to 3 Gbps per tunnel
2. Cloud Interconnect
- Dedicated (10 Gbps, 100 Gbps)
- Partner (50 Mbps to 50 Gbps)
- Lower latency than VPN
OCI Connectivity
1. IPSec VPN Connect
- IPSec VPN with redundant tunnels
- Dynamic routing through DRG
- Good fit for branch offices and migration phases
2. OCI FastConnect
- Private dedicated connectivity through Oracle or partner edge
- Suitable for predictable throughput and lower-latency hybrid traffic
- Commonly paired with DRG for hub-and-spoke designs
Hybrid Network Patterns
Pattern 1: Hub-and-Spoke
On-Premises Datacenter
↓
VPN/Direct Connect
↓
Transit Gateway (AWS) / vWAN (Azure)
↓
├─ Production VPC/VNet
├─ Staging VPC/VNet
└─ Development VPC/VNetPattern 2: Multi-Region Hybrid
On-Premises
├─ Direct Connect → us-east-1
└─ Direct Connect → us-west-2
↓
Cross-Region PeeringPattern 3: Multi-Cloud Hybrid
On-Premises Datacenter
├─ Direct Connect → AWS
├─ ExpressRoute → Azure
├─ Interconnect → GCP
└─ FastConnect → OCIRouting Configuration
BGP Configuration
On-Premises Router:
- AS Number: 65000
- Advertise: 10.0.0.0/8
Cloud Router:
- AS Number: 64512 (AWS), 65515 (Azure), provider-assigned for GCP/OCI
- Advertise: Cloud VPC/VNet CIDRsRoute Propagation
- Enable route propagation on route tables
- Use BGP for dynamic routing
- Implement route filtering
- Monitor route advertisements
Security Best Practices
1. Use private connectivity (Direct Connect/ExpressRoute/Interconnect/FastConnect) 2. Implement encryption for VPN tunnels 3. Use VPC endpoints to avoid internet routing 4. Configure network ACLs and security groups 5. Enable VPC Flow Logs for monitoring 6. Implement DDoS protection 7. Use PrivateLink/Private Endpoints 8. Monitor connections with CloudWatch/Azure Monitor/Cloud Monitoring/OCI Monitoring 9. Implement redundancy (dual tunnels) 10. Regular security audits
High Availability
Dual VPN Tunnels
resource "aws_vpn_connection" "primary" {
vpn_gateway_id = aws_vpn_gateway.main.id
customer_gateway_id = aws_customer_gateway.primary.id
type = "ipsec.1"
}
resource "aws_vpn_connection" "secondary" {
vpn_gateway_id = aws_vpn_gateway.main.id
customer_gateway_id = aws_customer_gateway.secondary.id
type = "ipsec.1"
}Active-Active Configuration
- Multiple connections from different locations
- BGP for automatic failover
- Equal-cost multi-path (ECMP) routing
- Monitor health of all connections
Monitoring and Troubleshooting
Key Metrics
- Tunnel status (up/down)
- Bytes in/out
- Packet loss
- Latency
- BGP session status
Troubleshooting
# AWS VPN
aws ec2 describe-vpn-connections
aws ec2 get-vpn-connection-telemetry
# Azure VPN
az network vpn-connection show
az network vpn-connection show-device-config-script
# OCI IPSec VPN
oci network ip-sec-connection list
oci network cpe listCost Optimization
1. Right-size connections based on traffic 2. Use VPN for low-bandwidth workloads 3. Consolidate traffic through fewer connections 4. Minimize data transfer costs 5. Use dedicated private links for high bandwidth 6. Implement caching to reduce traffic
Related Skills
multi-cloud-architecture- For architecture decisionsterraform-module-library- For IaC implementation
Dedicated Connectivity Comparison
Private Connectivity Options
| Provider | Service | Typical Use |
|---|---|---|
| AWS | Direct Connect | Private connectivity into VPCs and Transit Gateway domains |
| Azure | ExpressRoute | Dedicated enterprise connectivity into VNets and Microsoft services |
| GCP | Cloud Interconnect | Dedicated or partner connectivity into VPCs |
| OCI | FastConnect | Private connectivity into VCNs through DRG attachments |
Design Guidance
1. Prefer redundant circuits in separate facilities for production workloads. 2. Terminate private links into central transit or hub networking layers. 3. Use VPN as backup even when dedicated links are primary. 4. Validate BGP advertisements, failover behavior, and MTU assumptions during testing.
Related skills
How it compares
Choose hybrid-cloud-networking for on-prem-to-cloud private links rather than in-VPC microservice networking or API gateway configuration.
FAQ
What does hybrid-cloud-networking do?
Configure secure, high-performance connectivity between on-premises infrastructure and cloud platforms using VPN and dedicated connections. Use when building hybrid cloud architectures, connecting data centers to cloud,
When should I use hybrid-cloud-networking?
Configure secure, high-performance connectivity between on-premises infrastructure and cloud platforms using VPN and dedicated connections. Use when building hybrid cloud architectures, connecting data centers to cloud,
Is hybrid-cloud-networking safe to install?
Review the Security Audits panel on this page before installing in production.