---
title: VPC Networks and Cloudflare Mesh support now in public beta
description: Workers can now access entire private networks through VPC Network bindings, with support for Cloudflare Tunnel and Cloudflare Mesh.
image: https://developers.cloudflare.com/changelog-preview.png
---

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## VPC Networks and Cloudflare Mesh support now in public beta

Apr 14, 2026 

[ Workers VPC ](https://developers.cloudflare.com/workers-vpc/) 

[VPC Network](https://developers.cloudflare.com/workers-vpc/configuration/vpc-networks/) bindings now give your Workers access to any service in your private network without pre-registering individual hosts or ports. This complements existing [VPC Service](https://developers.cloudflare.com/workers-vpc/configuration/vpc-services/) bindings, which scope each binding to a specific host and port.

You can bind to a [Cloudflare Tunnel](https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/) by `tunnel_id` to reach any service on the network where that tunnel is running, or bind to your [Cloudflare Mesh](https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-mesh/) network using `cf1:network` to reach any Mesh node, client device, or subnet route in your account:

* [  wrangler.jsonc ](#tab-panel-1242)
* [  wrangler.toml ](#tab-panel-1243)

JSONC

```

{

  "vpc_networks": [

    {

      "binding": "MESH",

      "network_id": "cf1:network",

      "remote": true

    }

  ]

}


```

TOML

```

[[vpc_networks]]

binding = "MESH"

network_id = "cf1:network"

remote = true


```

At runtime, `fetch()` routes through the network to reach the service at the IP and port you specify:

JavaScript

```

const response = await env.MESH.fetch("http://10.0.1.50:8080/api/data");


```

For configuration options and examples, refer to [VPC Networks](https://developers.cloudflare.com/workers-vpc/configuration/vpc-networks/) and [Connect Workers to Cloudflare Mesh](https://developers.cloudflare.com/workers-vpc/examples/connect-to-cloudflare-mesh/).