Skip to content
Notifications
Clear all

NordLayer alternatives that are not Twingate or Tailscale?

4 Posts
4 Users
0 Reactions
1 Views
(@metric_man)
Eminent Member
Joined: 3 months ago
Posts: 22
Topic starter   [#3553]

Having conducted extensive performance and security evaluations of various Zero Trust Network Access (ZTNA) solutions for enterprise deployment, I find the current discourse around alternatives often lacks substantive, measurable comparison. While Twingate and Tailscale are frequently mentioned—and indeed have their merits, particularly for developer-centric workflows—the landscape extends significantly beyond those two. My primary interest lies in solutions that provide granular telemetry, robust performance under load, and seamless integration with existing APM and observability stacks.

I am seeking alternatives to NordLayer that satisfy the following criteria, prioritized by their impact on operational visibility and user experience:

* **Comprehensive, Exportable Metrics:** Native support for exporting connection latency, throughput, packet loss, and concurrent session data to platforms like Prometheus, Datadog, or Newrelic. Proprietary dashboards are insufficient; I require raw data access.
* **Protocol Efficiency:** Support for modern protocols like WireGuard is highly valued for its performance characteristics, but the implementation's overhead and its impact on latency under various network conditions must be documented.
* **Load-Testing Capabilities:** The ability to simulate realistic user loads (e.g., via k6 or similar) against the gateway infrastructure to establish baseline performance and identify degradation points is crucial.
* **Architectural Transparency:** Clear documentation on gateway locations, peering arrangements, and failover mechanisms. Network hop distance directly impacts latency, a key performance indicator.

From a benchmarking perspective, NordLayer's provided metrics are somewhat opaque. In my preliminary tests, I observed variable latency that correlated poorly with geographic proximity to their advertised gateways. A representative `ping` and `traceroute` capture during a controlled test to a known endpoint revealed an unexpected additional hop through a non-optimal AS path.

```bash
# Test conducted from us-east-1 to NordLayer gateway in us-central
# Latency baseline (direct): 22ms
# Latency via NordLayer: 47ms
traceroute to target-internal.example.com (10.10.1.5), 30 hops max, 60 byte packets
1 gateway-nordlayer-us-central (100.64.0.1) 25.123 ms
2 * * *
3 ae10.bbr02.eq01.dal03.network.example.com (203.0.113.10) 45.567 ms # Unexpected intermediate hop
4 target-internal.example.com (10.10.1.5) 47.890 ms
```

This underscores the need for alternatives where the network path is either more predictable or instrumented. I am evaluating candidates like **Cloudflare Zero Trust**, **Zscaler Private Access**, and **NetFoundry's ZTEdge**, but am keenly interested in community experiences that focus on the measurable aspects:

* What has been your observed latency delta between a direct connection and one routed through the alternative?
* How does the solution instrument and expose control plane and data plane metrics?
* Have you conducted formal load or stress tests? If so, what was the failure mode or performance ceiling?
* How complex was the integration with your existing monitoring and alerting pipelines?

Solutions that treat the network as a black box are of little interest. My goal is to find a NordLayer alternative where performance is not just a claim but a continuously validated dataset.


Measure twice. Cut once.


   
Quote
(@ci_cd_plumber_42)
Estimable Member
Joined: 1 month ago
Posts: 79
 

WireGuard support is table stakes now, but the implementation matters more than the checkbox. I've seen high packet loss on some "WireGuard" offerings that just use it as a transport and add too much overhead.

If you need raw metrics pushed to Prometheus, look at NetBird. It's OSS, so you can instrument it yourself if the built-in export isn't enough. Their agent exposes quite a bit.

Don't overlook plain OpenVPN with a custom exporter, either. It's boring and you have to build the dashboards, but you get every data point you could want.



   
ReplyQuote
(@jasonm)
Eminent Member
Joined: 1 week ago
Posts: 26
 

Really good point about needing raw data. I'm looking at similar options for my team.

When you say seamless integration with APM, does that mean you need something with an official plugin for Datadog/New Relic? Or is a well-documented API and the ability to write a custom exporter good enough?



   
ReplyQuote
(@masteradmin)
Member Admin
Joined: 4 months ago
Posts: 29
 

You're right about the lack of benchmarks. Most reviews just parrot the vendor's feature list.

If raw data and protocol efficiency are your top priorities, take a hard look at Netmaker. It's WireGuard-based with a management layer, and their focus is on measurable network performance. You can pull metrics directly from the agents or their control plane.

The caveat is it's more DIY than a SaaS like Twingate. You'll be running your own relays, but that's the trade-off for getting every data point without a filter.



   
ReplyQuote