惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

NetBird - Networking Knowledge Hub - RSS Feed

NetBird Is Now on the Vultr Marketplace Native NetBird on the GL.iNet Comet Pro (GL-RM10) NetBird v0.71 - IPv6 Overlay Addressing NetBird Exit Nodes - Appear at Home, or Anywhere Else Reporting Bugs and Requesting Features in NetBird Setup and Use Local AdGuard Home Anywhere with NetBird DNS How to Set Up NetBird on PiKVM for Secure Remote KVM Access Cloudflare Mesh vs NetBird vs Tailscale: Performance Compared Self-Hosting Nextcloud with Docker and NetBird Implementing Zero Trust with NetBird NetBird v0.67 - Layer 4 Proxy Support for TCP, UDP, and TLS Solwr Enhances Remote Connectivity with NetBird Self-Hosting NetBird with Authentik Jellyfin Media Server - Self-Host Your Movies, TV, and Music Cloudflare Tunnels vs. NetBird Reverse Proxy INFITX Builds Zero-Touch Kubernetes Networking with NetBird NetBird v0.66 - Expose Local Services to the Internet from the CLI Pangolin vs. NetBird Home Assistant Setup Guide with EASY Remote Access NetBird v0.65 - Built-in Reverse Proxy with Custom Domains Docker for Beginners - Everything You Need to Get Started NetBird for SOC 2 Compliance NetBird v0.63 - Custom DNS Zones for Private Network Resolution Vibecode This in a Weekend and Take 5% of the Company NetBird v0.62 - Built-in Local Users with Optional IdP Integration NetBird v0.61.0 - Granular SSH Access Control and Automatic Updates Top 5 Alternatives to OpenVPN Top 5 Open Source Alternatives to Tailscale Top 5 Alternatives to ZeroTier How to Set Up ZeroByte and REST Server for Backups with NetBird
NetBird v0.69 - CrowdSec IP Reputation for the Reverse Proxy
Written byBrandon Hopkins · 2026-04-20 · via NetBird - Networking Knowledge Hub - RSS Feed

The built-in reverse proxy keeps picking up new capabilities. v0.65 shipped the proxy itself, v0.66 added the command , and v0.67 extended it with Layer 4 support plus geo and IP access rules. The common thread is giving you a single place to control who reaches your services, without cobbling together a separate ingress stack.

v0.69 continues that path with CrowdSec IP reputation integration, so your reverse proxy can automatically block traffic from known-malicious IPs before it touches your backends. On top of that, this release improves macOS P2P connectivity, adds PCP protocol support, and ships a handful of client and management fixes.

CrowdSec IP Reputation in the Reverse Proxy

CrowdSec IP Reputation Overview

CrowdSec is an open-source collaborative security engine that maintains a crowdsourced list of malicious IP addresses. Think of it as a community-driven threat feed, with decisions flowing both from the global network and from local detections running against your own services.

With v0.69, you can now run a CrowdSec Local API (LAPI) alongside your reverse proxy and have the proxy check every incoming request against its decision list. Traffic from IPs flagged as malicious gets blocked at the edge, before the request ever reaches your application.

Three Modes to Fit the Risk You're Taking

The integration ships with three operating modes so you can roll it out carefully:

ModeWhat It DoesWhen to Use
OffCrowdSec checks are disabledDefault starting point
ObserveDecisions are logged but traffic is allowed throughEvaluate impact before enforcing
EnforceMalicious traffic is blockedProduction use once you've validated observe mode

With observe-mode you can watch access logs and see which requests would have been blocked, giving you a chance to catch false positives against legitimate traffic you care about. Observe-mode verdicts show up in the reverse proxy event log in the dashboard, tagged with an observe-mode badge and the decision type. They don't appear in the CrowdSec Console, which tracks the aggregate community feed rather than which of your requests the bouncer was consulted on.

CrowdSec observe-mode badge in proxy event logs

One thing worth knowing about enforce mode: the proxy fails closed during the bouncer's initial decision sync, so connections are denied until the cache is populated. After that, the lookup happens in memory on every connection, so checks stay on the hot path without adding a network round trip.

Restriction Evaluation Order

CrowdSec sits alongside the CIDR and country-based access rules that shipped in v0.67 . The proxy evaluates restrictions in a defined order, so you can stack them without surprises, CIDR and country allow/deny first, then CrowdSec reputation checks. This lets you maintain your own business rules while layering in reputation data on top.

Access logs now include CrowdSec deny reasons, surfaced as , , or depending on the underlying decision type. The proxy treats all three as a denial, there's no captcha challenge or rate limiting at the proxy layer, but the specific reason is preserved in the log so you can tell at a glance whether a block came from your rules or from the reputation feed.

Setting It Up on Self-Hosted

This feature requires self-hosted installations to add another container to the deployment. The self-hosted setup script has been updated with a CrowdSec LAPI container out of the box, so new installs get this for free. For existing deployments, there's a new Step 7 in the Enable Reverse Proxy migration guide that walks through the full setup, and the new CrowdSec IP Reputation reference page covers how the integration works day to day, optional enrollment with the CrowdSec Console, and a self-test for verifying end-to-end enforcement.

Do note that CrowdSec support for Cloud users is coming soon. If you're on Cloud, hold tight.

For full configuration details including decision types and restriction evaluation, see the authentication and access restrictions documentation .

macOS P2P Connectivity Improvements

macOS has always been a bit of a special case when it comes to routing, and some of the older approaches the client used could cause loops or prevent tunnel access to a remote peer's local addresses.

v0.69 replaces the old exclusion routes with a scoped default route combined with . In practice, this means the client no longer adds routes for every remote candidate address, which removes limitations on reaching a remote peer's local addresses through the tunnel.

If you need the old behavior for any reason, you can flip it back with a service env var:


More context on the change is in PR #5918 .

PCP Support for Better P2P Connections

NAT traversal is a game of trying every trick you've got. v0.69 adds PCP (Port Control Protocol) support to the client, which joins the existing NAT-PMP and UPnP methods for requesting port mappings from your router.

More techniques means more peers able to establish direct P2P connections instead of falling back to relay. For networks where PCP is the only supported protocol, this is a meaningful connectivity improvement. See PR #5219 for the implementation details.

Control the Network Selector with

For setups where you want to pin a client to specific networks and prevent users from switching, v0.69 adds a flag. When set, the client blocks network selection at the UI and CLI level.

This is the kind of thing that matters for managed deployments where a device should always stay on the network assigned by policy. See PR #5896 .

Direct Redirect to SSO

Small quality-of-life improvement on the proxy: services can now redirect directly to SSO instead of showing an intermediate page. One fewer click between your users and the thing they're trying to reach. See PR #5874 .

Everything Else

  • Container DNAT bypass guard: iptables rules now prevent containers from using DNAT to bypass ACL rules. ( #5697 )
  • iOS posture checks: is now populated on iOS, enabling full posture check support on the platform. ( #5900 )
  • conntrack reliability: The conntrack netlink listener now reconnects automatically on error instead of silently dying. ( #5885 )
  • SSH config fix: Resolved an issue where the SSH client config could incorrectly combine and directives. ( #5903 )
  • WGIface deadlock fix: Fixed a deadlock in when a DNS filter hook re-entered . ( #5916 )
  • Clearing service env vars: You can now clear service environment variables by passing . ( #5893 )
  • Network router requirement: Network routers now require a peer or peer group to be assigned, catching misconfigurations at create time. ( #5894 )
  • Shared cache store: The management server now reuses a single cache store across all consumers, reducing memory overhead. ( #5889 )
  • Google Workspace IDP fix: Resolved a lint error in the Google Workspace integration. ( #5907 )
  • Sign pipeline update: Bumped to v0.1.2. ( #5884 )

Learn More and Connect