Logo
Explore Help
Register Sign In
SVI/netbird
1
0
Fork 0
You've already forked netbird
mirror of https://github.com/netbirdio/netbird.git synced 2026-03-31 06:34:19 -04:00
Code Issues 3.0k Packages Projects Releases 10 Wiki Activity

10 Releases 314 Tags

RSS Feed
  • v0.60.1 68f56b797d
    Compare

    Stable

    saavagebueno released this 2025-11-19 07:16:47 -05:00 | 310 commits to main since this release

    📅 Originally published on GitHub: Wed, 19 Nov 2025 14:22:53 GMT
    🏷️ Git tag created: Wed, 19 Nov 2025 12:16:47 GMT

    What's Changed

    • [management] Fix direct peer networks route by @pascal-fischer in https://github.com/netbirdio/netbird/pull/4802
    • [management] pass config to controller by @pascal-fischer in https://github.com/netbirdio/netbird/pull/4807
    • [management] Add native ssh port rule on 22 by @mlsmaycon in https://github.com/netbirdio/netbird/pull/4810

    Full Changelog: https://github.com/netbirdio/netbird/compare/v0.60.0...v0.60.1

    Downloads
    • getting-started-with-zitadel.sh
      29 KiB
      2025-11-20 04:58:03 -05:00
    • install.sh
      14 KiB
      2025-11-20 04:58:04 -05:00
    • Source Code (ZIP)
    • Source Code (TAR.GZ)
  • v0.60.0 60f4d5f9b0
    Compare

    Stable

    saavagebueno released this 2025-11-18 06:41:17 -05:00 | 313 commits to main since this release

    📅 Originally published on GitHub: Tue, 18 Nov 2025 16:06:31 GMT
    🏷️ Git tag created: Tue, 18 Nov 2025 11:41:17 GMT

    What's New

    Native SSH Access & OpenSSH Integration

    NetBird v0.60.0 ships a complete rewrite of SSH access. Every peer can now run a built-in SSH server, giving you identity-aware, private SSH access over your NetBird network — using either the netbird ssh command or your existing OpenSSH clients.

    Highlights

    • Built-in SSH server on every peer - Enable with netbird up --allow-server-ssh and get a native SSH endpoint without exposing port 22 to the internet.

    • Identity-aware access with JWT - SSH sessions are authenticated via your IdP (OIDC/JWT) by default, so you know which user accessed which machine.

    • Works with netbird ssh and OpenSSH - Use netbird ssh user@<peer-ip> or standard ssh, sftp, and scp commands; NetBird configures OpenSSH automatically via a drop-in 99-netbird.conf.

    • Port 22, transparently secured - NetBird listens on TCP 22022 and redirects NetBird-network port 22 traffic to it, so existing SSH workflows keep working without changing ports.

    • Advanced features when you need them - Optional SFTP, local and remote port forwarding, root login, and JWT token caching (--ssh-jwt-cache-ttl) for fewer auth prompts.

    • Machine identity mode (legacy behavior) - Prefer host-based trust? Disable JWT auth with --disable-ssh-auth and rely purely on network-level ACLs.

    How it works

    1. Enable the SSH server on the target peer
    netbird down  # if already running
    netbird up --allow-server-ssh
    

    Add optional flags for SFTP, port forwarding, or root login as needed:

    netbird up --allow-server-ssh \
      --enable-ssh-local-port-forwarding \
      --enable-ssh-remote-port-forwarding \
      --enable-ssh-sftp \
      --enable-ssh-root
    
    1. Create an ACL policy for SSH
      Allow TCP port 22022 from your SSH client peers/groups to your SSH server peers/groups in Access Control.

    2. Enable SSH in the Dashboard
      Open the target peer → enable SSH Access.

    3. Connect via CLI or OpenSSH

    • NetBird CLI:
    netbird ssh user@100.119.230.104
    
    • OpenSSH:
    ssh user@100.119.230.104
    sftp user@100.119.230.104
    scp file.txt user@100.119.230.104:/path
    

    📖 Read more in the SSH documentation: https://docs.netbird.io/how-to/ssh


    Client Improvements

    • Updated the client login success page with an improved user experience.
        #4797
    • Reverted deprecated gRPC client code migration to restore expected behavior.
        #4805

    Management Improvements

    • Fixed handling of port ranges in route firewall rules to ensure accurate rule application.
        #4801

    Upgrade & Compatibility Notes

    • ⚠️ NetBird SSH in v0.60.0 is a breaking change:

      • Server port changed from 44338 → 22022
      • Authentication moved from machine public keys to JWT-based user identity
      • Implicit firewall rules were removed - you now need an explicit ACL for port 22022
    • ⚠️ Version compatibility: v0.60.0+ SSH is not backward compatible with older peers.
      For self-hosted environments, we recommend updating in this order:

      1. Management server
      2. Dashboard (for browser SSH, if used)
      3. SSH servers first (peers with --allow-server-ssh)
      4. SSH clients last (netbird ssh users)

    Full Changelog: v0.59.13...v0.60.0

    Downloads
    • netbird_0.60.0_checksums.txt
      2.8 KiB
      2025-11-20 04:58:03 -05:00
    • Source Code (ZIP)
    • Source Code (TAR.GZ)
  • v0.59.13 e4b41d0ad7
    Compare

    Stable

    saavagebueno released this 2025-11-13 18:25:00 -05:00 | 317 commits to main since this release

    📅 Originally published on GitHub: Thu, 13 Nov 2025 23:30:46 GMT
    🏷️ Git tag created: Thu, 13 Nov 2025 23:25:00 GMT

    What's Changed

    • [management] activity events on group updates by @pascal-fischer in https://github.com/netbirdio/netbird/pull/4750
    • Bump github.com/containerd/containerd from 1.7.27 to 1.7.29 by @dependabot[bot] in https://github.com/netbirdio/netbird/pull/4756
    • [management] incremental network map builder by @crn4 in https://github.com/netbirdio/netbird/pull/4753
    • [management] add pat rate limiting by @pascal-fischer in https://github.com/netbirdio/netbird/pull/4741
    • [management] remove toAll firewall rule by @crn4 in https://github.com/netbirdio/netbird/pull/4725
    • [management] remove GLOBAL when disabling foreign keys on mysql by @pascal-fischer in https://github.com/netbirdio/netbird/pull/4615
    • [management ] remove timing logs by @pascal-fischer in https://github.com/netbirdio/netbird/pull/4761
    • [client] Create networkd.conf.d if it doesn't exist by @lixmal in https://github.com/netbirdio/netbird/pull/4764
    • [management] fix pg db deadlock after app panic by @crn4 in https://github.com/netbirdio/netbird/pull/4772
    • [client] Fix agent reference by @pappz in https://github.com/netbirdio/netbird/pull/4776
    • [management] move network map logic into new design by @pascal-fischer in https://github.com/netbirdio/netbird/pull/4774
    • [management] Removed policy posture checks on original peer by @pascal-fischer in https://github.com/netbirdio/netbird/pull/4779
    • [client] Fix shutdown blocking on stuck ICE agent close by @lixmal in https://github.com/netbirdio/netbird/pull/4780
    • [client] Add quick actions window by @doromaraujo in https://github.com/netbirdio/netbird/pull/4717
    • [client] Use stdnet with a context to avoid DNS deadlocks by @lixmal in https://github.com/netbirdio/netbird/pull/4781
    • [client] Replace ipset lib by @lixmal in https://github.com/netbirdio/netbird/pull/4777

    Full Changelog: https://github.com/netbirdio/netbird/compare/v0.59.12...v0.59.13

    Downloads
    • getting-started-with-zitadel.sh
      29 KiB
      2025-11-20 04:55:54 -05:00
    • install.sh
      14 KiB
      2025-11-20 04:55:55 -05:00
    • netbird_0.59.13_checksums.txt
      2.8 KiB
      2025-11-20 04:56:33 -05:00
    • netbird-ui_0.59.13_checksums.txt
      540 B
      2025-11-20 04:56:05 -05:00
    • netbird-ui_0.59.13_darwin_all_signed.zip
      29 MiB
      2025-11-20 04:56:13 -05:00
    • netbird-ui_0.59.13_darwin_all.tar.gz
      29 MiB
      2025-11-20 04:56:09 -05:00
    • netbird-ui_0.59.13_darwin_amd64_signed.zip
      15 MiB
      2025-11-20 04:56:18 -05:00
    • netbird-ui_0.59.13_darwin_amd64.tar.gz
      15 MiB
      2025-11-20 04:56:16 -05:00
    • netbird-ui_0.59.13_darwin_arm64_signed.zip
      14 MiB
      2025-11-20 04:56:23 -05:00
    • netbird-ui_0.59.13_darwin_arm64.tar.gz
      14 MiB
      2025-11-20 04:56:21 -05:00
    • netbird-ui_0.59.13_linux_amd64.deb
      16 MiB
      2025-11-20 04:56:26 -05:00
    • netbird-ui_0.59.13_linux_amd64.rpm
      16 MiB
      2025-11-20 04:56:28 -05:00
    • netbird-ui_darwin_checksums.txt
      313 B
      2025-11-20 04:56:29 -05:00
    • netbird-ui-linux_0.59.13_linux_amd64.tar.gz
      16 MiB
      2025-11-20 04:55:58 -05:00
    • netbird-ui-windows_0.59.13_windows_amd64.tar.gz
      15 MiB
      2025-11-20 04:56:01 -05:00
    • netbird-ui-windows_0.59.13_windows_arm64.tar.gz
      14 MiB
      2025-11-20 04:56:04 -05:00
    • Source Code (ZIP)
    • Source Code (TAR.GZ)
  • v0.59.12 229e0038ee
    Compare

    Stable

    saavagebueno released this 2025-11-05 11:30:17 -05:00 | 333 commits to main since this release

    📅 Originally published on GitHub: Wed, 05 Nov 2025 18:38:05 GMT
    🏷️ Git tag created: Wed, 05 Nov 2025 16:30:17 GMT

    What's Changed

    • [client] Migrate deprecated grpc client code by @lixmal in https://github.com/netbirdio/netbird/pull/4687
    • [client] Fix netstack dns forwarder by @lixmal in https://github.com/netbirdio/netbird/pull/4727
    • [client] Extend Darwin network monitoring with wakeup detection (cleanup branch) by @pappz in https://github.com/netbirdio/netbird/pull/4723
    • Bump github.com/quic-go/quic-go from 0.48.2 to 0.49.1 by @dependabot[bot] in https://github.com/netbirdio/netbird/pull/4621
    • [management] update db connection lifecycle configuration by @pascal-fischer in https://github.com/netbirdio/netbird/pull/4740
    • [client] Set up networkd to ignore ip rules by @lixmal in https://github.com/netbirdio/netbird/pull/4730
    • [client] Clamp MSS on outbound traffic by @lixmal in https://github.com/netbirdio/netbird/pull/4735
    • [client] Allow INPUT traffic on the compat iptables filter table for nftables by @lixmal in https://github.com/netbirdio/netbird/pull/4742
    • [client] Block on all subsystems on shutdown by @lixmal in https://github.com/netbirdio/netbird/pull/4709
    • [client] Add login_hint to oidc flows by @lixmal in https://github.com/netbirdio/netbird/pull/4724
    • [client] Add dns config to debug bundle by @lixmal in https://github.com/netbirdio/netbird/pull/4704

    Full Changelog: https://github.com/netbirdio/netbird/compare/v0.59.11...v0.59.12

    Downloads
    • getting-started-with-zitadel.sh
      29 KiB
      2025-11-20 04:55:16 -05:00
    • install.sh
      14 KiB
      2025-11-20 04:55:17 -05:00
    • netbird_0.59.12_broken.wasm
      46 MiB
      2025-11-20 04:56:01 -05:00
    • netbird_0.59.12_checksums.txt
      2.8 KiB
      2025-11-20 04:56:02 -05:00
    • netbird_0.59.12_darwin_all.tar.gz
      20 MiB
      2025-11-20 04:56:11 -05:00
    • netbird_0.59.12_darwin_amd64.pkg
      25 MiB
      2025-11-20 04:56:14 -05:00
    • netbird_0.59.12_darwin_amd64.tar.gz
      10 MiB
      2025-11-20 04:56:16 -05:00
    • netbird_0.59.12_darwin_arm64.pkg
      24 MiB
      2025-11-20 04:56:19 -05:00
    • netbird_0.59.12_darwin_arm64.tar.gz
      10 MiB
      2025-11-20 04:56:21 -05:00
    • netbird_0.59.12_darwin.pkg
      49 MiB
      2025-11-20 04:56:08 -05:00
    • netbird_0.59.12_linux_386.deb
      11 MiB
      2025-11-20 04:56:23 -05:00
    • netbird_0.59.12_linux_386.rpm
      12 MiB
      2025-11-20 04:56:25 -05:00
    • netbird_0.59.12_linux_386.tar.gz
      11 MiB
      2025-11-20 04:56:27 -05:00
    • netbird_0.59.12_linux_amd64.deb
      12 MiB
      2025-11-20 04:56:29 -05:00
    • netbird_0.59.12_linux_amd64.rpm
      12 MiB
      2025-11-20 04:56:31 -05:00
    • netbird_0.59.12_linux_amd64.tar.gz
      12 MiB
      2025-11-20 04:56:33 -05:00
    • netbird_0.59.12_linux_arm64.deb
      11 MiB
      2025-11-20 04:56:35 -05:00
    • netbird_0.59.12.wasm
      46 MiB
      2025-11-20 04:55:54 -05:00
    • netbird-ui_0.59.12_checksums.txt
      540 B
      2025-11-20 04:55:25 -05:00
    • netbird-ui_0.59.12_darwin_all_signed.zip
      29 MiB
      2025-11-20 04:55:32 -05:00
    • netbird-ui_0.59.12_darwin_all.tar.gz
      29 MiB
      2025-11-20 04:55:29 -05:00
    • netbird-ui_0.59.12_darwin_amd64_signed.zip
      15 MiB
      2025-11-20 04:55:37 -05:00
    • netbird-ui_0.59.12_darwin_amd64.tar.gz
      15 MiB
      2025-11-20 04:55:35 -05:00
    • netbird-ui_0.59.12_darwin_arm64_signed.zip
      14 MiB
      2025-11-20 04:55:42 -05:00
    • netbird-ui_0.59.12_darwin_arm64.tar.gz
      14 MiB
      2025-11-20 04:55:39 -05:00
    • netbird-ui_0.59.12_linux_amd64.deb
      16 MiB
      2025-11-20 04:55:44 -05:00
    • netbird-ui_0.59.12_linux_amd64.rpm
      16 MiB
      2025-11-20 04:55:47 -05:00
    • netbird-ui_darwin_checksums.txt
      313 B
      2025-11-20 04:55:48 -05:00
    • netbird-ui-linux_0.59.12_linux_amd64.tar.gz
      15 MiB
      2025-11-20 04:55:19 -05:00
    • netbird-ui-windows_0.59.12_windows_amd64.tar.gz
      15 MiB
      2025-11-20 04:55:22 -05:00
    • netbird-ui-windows_0.59.12_windows_arm64.tar.gz
      14 MiB
      2025-11-20 04:55:24 -05:00
    • Source Code (ZIP)
    • Source Code (TAR.GZ)
  • v0.59.11 c530db1455
    Compare

    Stable

    saavagebueno released this 2025-10-29 12:27:18 -04:00 | 344 commits to main since this release

    📅 Originally published on GitHub: Wed, 29 Oct 2025 16:28:13 GMT
    🏷️ Git tag created: Wed, 29 Oct 2025 16:27:18 GMT

    What's Changed

    • [client] Fix UI panic when switching profiles by @lixmal in https://github.com/netbirdio/netbird/pull/4718

    Full Changelog: https://github.com/netbirdio/netbird/compare/v0.59.10...v0.59.11

    Downloads
    • getting-started-with-zitadel.sh
      29 KiB
      2025-11-20 04:53:40 -05:00
    • install.sh
      14 KiB
      2025-11-20 04:53:41 -05:00
    • netbird_0.59.11_checksums.txt
      2.8 KiB
      2025-11-20 04:54:21 -05:00
    • netbird_0.59.11_darwin_all.tar.gz
      20 MiB
      2025-11-20 04:54:30 -05:00
    • netbird_0.59.11_darwin_amd64.pkg
      25 MiB
      2025-11-20 04:54:33 -05:00
    • netbird_0.59.11_darwin_amd64.tar.gz
      10 MiB
      2025-11-20 04:54:35 -05:00
    • netbird_0.59.11_darwin_arm64.pkg
      24 MiB
      2025-11-20 04:54:38 -05:00
    • netbird_0.59.11_darwin_arm64.tar.gz
      10 MiB
      2025-11-20 04:54:40 -05:00
    • netbird_0.59.11_darwin.pkg
      49 MiB
      2025-11-20 04:54:27 -05:00
    • netbird_0.59.11_linux_386.deb
      11 MiB
      2025-11-20 04:54:42 -05:00
    • netbird_0.59.11_linux_386.rpm
      12 MiB
      2025-11-20 04:54:44 -05:00
    • netbird_0.59.11_linux_386.tar.gz
      11 MiB
      2025-11-20 04:54:47 -05:00
    • netbird_0.59.11_linux_amd64.deb
      12 MiB
      2025-11-20 04:54:49 -05:00
    • netbird_0.59.11_linux_amd64.rpm
      12 MiB
      2025-11-20 04:54:51 -05:00
    • netbird_0.59.11_linux_amd64.tar.gz
      12 MiB
      2025-11-20 04:54:53 -05:00
    • netbird_0.59.11_linux_arm64.deb
      11 MiB
      2025-11-20 04:54:55 -05:00
    • netbird_0.59.11_linux_arm64.rpm
      11 MiB
      2025-11-20 04:54:57 -05:00
    • netbird_0.59.11_linux_arm64.tar.gz
      11 MiB
      2025-11-20 04:55:00 -05:00
    • netbird_0.59.11_linux_armv6.deb
      11 MiB
      2025-11-20 04:55:02 -05:00
    • netbird_0.59.11_linux_armv6.rpm
      12 MiB
      2025-11-20 04:55:05 -05:00
    • netbird_0.59.11_linux_armv6.tar.gz
      11 MiB
      2025-11-20 04:55:07 -05:00
    • netbird_0.59.11_linux_mips_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:55:22 -05:00
    • netbird_0.59.11_linux_mips_softfloat.tar.gz
      10 MiB
      2025-11-20 04:55:24 -05:00
    • netbird_0.59.11_linux_mips64_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:55:13 -05:00
    • netbird_0.59.11_linux_mips64_softfloat.tar.gz
      10 MiB
      2025-11-20 04:55:15 -05:00
    • netbird_0.59.11_linux_mips64le_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:55:09 -05:00
    • netbird_0.59.11_linux_mips64le_softfloat.tar.gz
      10 MiB
      2025-11-20 04:55:11 -05:00
    • netbird_0.59.11_linux_mipsle_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:55:18 -05:00
    • netbird_0.59.11_linux_mipsle_softfloat.tar.gz
      10 MiB
      2025-11-20 04:55:20 -05:00
    • netbird_0.59.11_windows_amd64_signed.tar.gz
      39 MiB
      2025-11-20 04:55:32 -05:00
    • netbird_0.59.11_windows_amd64.tar.gz
      11 MiB
      2025-11-20 04:55:26 -05:00
    • netbird_0.59.11_windows_arm64_signed.tar.gz
      23 MiB
      2025-11-20 04:55:37 -05:00
    • netbird_0.59.11_windows_arm64.tar.gz
      9.7 MiB
      2025-11-20 04:55:34 -05:00
    • netbird_0.59.11.wasm
      46 MiB
      2025-11-20 04:54:20 -05:00
    • netbird_installer_0.59.11_windows_amd64.exe
      29 MiB
      2025-11-20 04:55:42 -05:00
    • netbird_installer_0.59.11_windows_amd64.msi
      34 MiB
      2025-11-20 04:55:46 -05:00
    • netbird_installer_0.59.11_windows_arm64.exe
      17 MiB
      2025-11-20 04:55:48 -05:00
    • netbird_installer_0.59.11_windows_arm64.msi
      20 MiB
      2025-11-20 04:55:52 -05:00
    • netbird-ui_0.59.11_checksums.txt
      540 B
      2025-11-20 04:53:51 -05:00
    • netbird-ui_0.59.11_darwin_all_signed.zip
      29 MiB
      2025-11-20 04:54:00 -05:00
    • netbird-ui_0.59.11_darwin_all.tar.gz
      29 MiB
      2025-11-20 04:53:55 -05:00
    • netbird-ui_0.59.11_darwin_amd64_signed.zip
      15 MiB
      2025-11-20 04:54:05 -05:00
    • netbird-ui_0.59.11_darwin_amd64.tar.gz
      15 MiB
      2025-11-20 04:54:02 -05:00
    • netbird-ui_0.59.11_darwin_arm64_signed.zip
      14 MiB
      2025-11-20 04:54:09 -05:00
    • netbird-ui_0.59.11_darwin_arm64.tar.gz
      14 MiB
      2025-11-20 04:54:07 -05:00
    • netbird-ui_0.59.11_linux_amd64.deb
      16 MiB
      2025-11-20 04:54:11 -05:00
    • netbird-ui_0.59.11_linux_amd64.rpm
      16 MiB
      2025-11-20 04:54:14 -05:00
    • netbird-ui_darwin_checksums.txt
      313 B
      2025-11-20 04:54:15 -05:00
    • netbird-ui-linux_0.59.11_linux_amd64.tar.gz
      15 MiB
      2025-11-20 04:53:45 -05:00
    • netbird-ui-windows_0.59.11_windows_amd64.tar.gz
      15 MiB
      2025-11-20 04:53:48 -05:00
    • netbird-ui-windows_0.59.11_windows_arm64.tar.gz
      14 MiB
      2025-11-20 04:53:50 -05:00
    • Source Code (ZIP)
    • Source Code (TAR.GZ)
  • v0.59.10 1ee575befe
    Compare

    Stable

    saavagebueno released this 2025-10-28 17:58:43 -04:00 | 345 commits to main since this release

    📅 Originally published on GitHub: Tue, 28 Oct 2025 22:36:58 GMT
    🏷️ Git tag created: Tue, 28 Oct 2025 21:58:43 GMT

    What's Changed

    • [client] Fix Connect/Disconnect buttons being enabled or disabled at the same time by @lixmal in https://github.com/netbirdio/netbird/pull/4711
    • [client] Use management-provided dns forwarder port on the client side by @lixmal in https://github.com/netbirdio/netbird/pull/4712

    Full Changelog: https://github.com/netbirdio/netbird/compare/v0.59.9...v0.59.10

    Downloads
    • getting-started-with-zitadel.sh
      29 KiB
      2025-11-20 04:52:56 -05:00
    • install.sh
      14 KiB
      2025-11-20 04:52:57 -05:00
    • netbird_0.59.10_checksums.txt
      2.8 KiB
      2025-11-20 04:53:39 -05:00
    • netbird_0.59.10_darwin_all.tar.gz
      20 MiB
      2025-11-20 04:53:49 -05:00
    • netbird_0.59.10_darwin_amd64.pkg
      25 MiB
      2025-11-20 04:53:52 -05:00
    • netbird_0.59.10_darwin_amd64.tar.gz
      10 MiB
      2025-11-20 04:53:54 -05:00
    • netbird_0.59.10_darwin_arm64.pkg
      24 MiB
      2025-11-20 04:53:58 -05:00
    • netbird_0.59.10_darwin_arm64.tar.gz
      10 MiB
      2025-11-20 04:54:00 -05:00
    • netbird_0.59.10_darwin.pkg
      49 MiB
      2025-11-20 04:53:45 -05:00
    • netbird_0.59.10_linux_386.deb
      11 MiB
      2025-11-20 04:54:02 -05:00
    • netbird_0.59.10_linux_386.rpm
      12 MiB
      2025-11-20 04:54:04 -05:00
    • netbird_0.59.10_linux_386.tar.gz
      11 MiB
      2025-11-20 04:54:07 -05:00
    • netbird_0.59.10_linux_amd64.deb
      12 MiB
      2025-11-20 04:54:09 -05:00
    • netbird_0.59.10_linux_amd64.rpm
      12 MiB
      2025-11-20 04:54:11 -05:00
    • netbird_0.59.10_linux_amd64.tar.gz
      12 MiB
      2025-11-20 04:54:14 -05:00
    • netbird_0.59.10_linux_arm64.deb
      11 MiB
      2025-11-20 04:54:16 -05:00
    • netbird_0.59.10_linux_arm64.rpm
      11 MiB
      2025-11-20 04:54:19 -05:00
    • netbird_0.59.10_linux_arm64.tar.gz
      11 MiB
      2025-11-20 04:54:21 -05:00
    • netbird_0.59.10_linux_armv6.deb
      11 MiB
      2025-11-20 04:54:24 -05:00
    • netbird_0.59.10_linux_armv6.rpm
      12 MiB
      2025-11-20 04:54:26 -05:00
    • netbird_0.59.10_linux_armv6.tar.gz
      11 MiB
      2025-11-20 04:54:29 -05:00
    • netbird_0.59.10_linux_mips_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:54:42 -05:00
    • netbird_0.59.10_linux_mips_softfloat.tar.gz
      10 MiB
      2025-11-20 04:54:45 -05:00
    • netbird_0.59.10_linux_mips64_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:54:35 -05:00
    • netbird_0.59.10_linux_mips64_softfloat.tar.gz
      10 MiB
      2025-11-20 04:54:37 -05:00
    • netbird_0.59.10_linux_mips64le_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:54:31 -05:00
    • netbird_0.59.10_linux_mips64le_softfloat.tar.gz
      10 MiB
      2025-11-20 04:54:33 -05:00
    • netbird_0.59.10_linux_mipsle_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:54:39 -05:00
    • netbird_0.59.10_linux_mipsle_softfloat.tar.gz
      10 MiB
      2025-11-20 04:54:41 -05:00
    • netbird_0.59.10_windows_amd64_signed.tar.gz
      39 MiB
      2025-11-20 04:54:52 -05:00
    • netbird_0.59.10_windows_amd64.tar.gz
      11 MiB
      2025-11-20 04:54:47 -05:00
    • netbird_0.59.10_windows_arm64_signed.tar.gz
      23 MiB
      2025-11-20 04:54:58 -05:00
    • netbird_0.59.10_windows_arm64.tar.gz
      9.7 MiB
      2025-11-20 04:54:55 -05:00
    • netbird_0.59.10.wasm
      46 MiB
      2025-11-20 04:53:38 -05:00
    • netbird_installer_0.59.10_windows_amd64.exe
      29 MiB
      2025-11-20 04:55:02 -05:00
    • netbird_installer_0.59.10_windows_amd64.msi
      34 MiB
      2025-11-20 04:55:07 -05:00
    • netbird_installer_0.59.10_windows_arm64.exe
      17 MiB
      2025-11-20 04:55:11 -05:00
    • netbird_installer_0.59.10_windows_arm64.msi
      20 MiB
      2025-11-20 04:55:14 -05:00
    • netbird-ui_0.59.10_checksums.txt
      540 B
      2025-11-20 04:53:06 -05:00
    • netbird-ui_0.59.10_darwin_all_signed.zip
      29 MiB
      2025-11-20 04:53:14 -05:00
    • netbird-ui_0.59.10_darwin_all.tar.gz
      29 MiB
      2025-11-20 04:53:10 -05:00
    • netbird-ui_0.59.10_darwin_amd64_signed.zip
      15 MiB
      2025-11-20 04:53:18 -05:00
    • netbird-ui_0.59.10_darwin_amd64.tar.gz
      15 MiB
      2025-11-20 04:53:16 -05:00
    • netbird-ui_0.59.10_darwin_arm64_signed.zip
      14 MiB
      2025-11-20 04:53:25 -05:00
    • netbird-ui_0.59.10_darwin_arm64.tar.gz
      14 MiB
      2025-11-20 04:53:21 -05:00
    • netbird-ui_0.59.10_linux_amd64.deb
      16 MiB
      2025-11-20 04:53:27 -05:00
    • netbird-ui_0.59.10_linux_amd64.rpm
      16 MiB
      2025-11-20 04:53:31 -05:00
    • netbird-ui_darwin_checksums.txt
      313 B
      2025-11-20 04:53:32 -05:00
    • netbird-ui-linux_0.59.10_linux_amd64.tar.gz
      15 MiB
      2025-11-20 04:53:00 -05:00
    • netbird-ui-windows_0.59.10_windows_amd64.tar.gz
      15 MiB
      2025-11-20 04:53:03 -05:00
    • netbird-ui-windows_0.59.10_windows_arm64.tar.gz
      14 MiB
      2025-11-20 04:53:05 -05:00
    • Source Code (ZIP)
    • Source Code (TAR.GZ)
  • v0.59.9 d7321c130b
    Compare

    Stable

    saavagebueno released this 2025-10-28 11:11:35 -04:00 | 347 commits to main since this release

    📅 Originally published on GitHub: Tue, 28 Oct 2025 15:18:19 GMT
    🏷️ Git tag created: Tue, 28 Oct 2025 15:11:35 GMT

    What's Changed

    • [management] Add peer disapproval reason by @bcmmbaga in https://github.com/netbirdio/netbird/pull/4468
    • [client] Fix active profile name in debug bundle by @lixmal in https://github.com/netbirdio/netbird/pull/4689
    • [signal] Fix HTTP/WebSocket proxy not using custom certificates by @bcmmbaga in https://github.com/netbirdio/netbird/pull/4644
    • [client] Fix macOS state-based dns cleanup by @lixmal in https://github.com/netbirdio/netbird/pull/4701
    • [client] Clean up bsd routes independently of the state file by @lixmal in https://github.com/netbirdio/netbird/pull/4688
    • Include expired and routing peers in DNS record filtering by @bcmmbaga in https://github.com/netbirdio/netbird/pull/4708
    • [management] rewire account manager to permissions manager by @pascal-fischer in https://github.com/netbirdio/netbird/pull/4673
    • [client] Redirect dns forwarder port 5353 to new listening port 22054 by @lixmal in https://github.com/netbirdio/netbird/pull/4707
    • [client] The status cmd will not be blocked by the ICE probe by @pappz in https://github.com/netbirdio/netbird/pull/4597

    Full Changelog: https://github.com/netbirdio/netbird/compare/v0.59.8...v0.59.9

    Downloads
    • getting-started-with-zitadel.sh
      29 KiB
      2025-11-20 04:51:23 -05:00
    • install.sh
      14 KiB
      2025-11-20 04:51:23 -05:00
    • netbird_0.59.9_checksums.txt
      2.8 KiB
      2025-11-20 04:52:02 -05:00
    • netbird_0.59.9_darwin_all.tar.gz
      20 MiB
      2025-11-20 04:52:13 -05:00
    • netbird_0.59.9_darwin_amd64.pkg
      25 MiB
      2025-11-20 04:52:16 -05:00
    • netbird_0.59.9_darwin_amd64.tar.gz
      10 MiB
      2025-11-20 04:52:18 -05:00
    • netbird_0.59.9_darwin_arm64.pkg
      24 MiB
      2025-11-20 04:52:23 -05:00
    • netbird_0.59.9_darwin_arm64.tar.gz
      10 MiB
      2025-11-20 04:52:25 -05:00
    • netbird_0.59.9_darwin.pkg
      49 MiB
      2025-11-20 04:52:09 -05:00
    • netbird_0.59.9_linux_386.deb
      11 MiB
      2025-11-20 04:52:28 -05:00
    • netbird_0.59.9_linux_386.rpm
      12 MiB
      2025-11-20 04:52:31 -05:00
    • netbird_0.59.9_linux_386.tar.gz
      11 MiB
      2025-11-20 04:52:33 -05:00
    • netbird_0.59.9_linux_amd64.deb
      12 MiB
      2025-11-20 04:52:35 -05:00
    • netbird_0.59.9_linux_amd64.rpm
      12 MiB
      2025-11-20 04:52:38 -05:00
    • netbird_0.59.9_linux_amd64.tar.gz
      12 MiB
      2025-11-20 04:52:41 -05:00
    • netbird_0.59.9_linux_arm64.deb
      11 MiB
      2025-11-20 04:52:43 -05:00
    • netbird_0.59.9_linux_arm64.rpm
      11 MiB
      2025-11-20 04:52:45 -05:00
    • netbird_0.59.9_linux_arm64.tar.gz
      11 MiB
      2025-11-20 04:52:48 -05:00
    • netbird_0.59.9_linux_armv6.deb
      11 MiB
      2025-11-20 04:52:50 -05:00
    • netbird_0.59.9_linux_armv6.rpm
      11 MiB
      2025-11-20 04:52:52 -05:00
    • netbird_0.59.9_linux_armv6.tar.gz
      11 MiB
      2025-11-20 04:52:54 -05:00
    • netbird_0.59.9_linux_mips_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:53:08 -05:00
    • netbird_0.59.9_linux_mips_softfloat.tar.gz
      10 MiB
      2025-11-20 04:53:10 -05:00
    • netbird_0.59.9_linux_mips64_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:53:00 -05:00
    • netbird_0.59.9_linux_mips64_softfloat.tar.gz
      10 MiB
      2025-11-20 04:53:02 -05:00
    • netbird_0.59.9_linux_mips64le_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:52:56 -05:00
    • netbird_0.59.9_linux_mips64le_softfloat.tar.gz
      10 MiB
      2025-11-20 04:52:58 -05:00
    • netbird_0.59.9_linux_mipsle_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:53:05 -05:00
    • netbird_0.59.9_linux_mipsle_softfloat.tar.gz
      10 MiB
      2025-11-20 04:53:06 -05:00
    • netbird_0.59.9_windows_amd64_signed.tar.gz
      39 MiB
      2025-11-20 04:53:17 -05:00
    • netbird_0.59.9_windows_amd64.tar.gz
      11 MiB
      2025-11-20 04:53:12 -05:00
    • netbird_0.59.9_windows_arm64_signed.tar.gz
      23 MiB
      2025-11-20 04:53:22 -05:00
    • netbird_0.59.9_windows_arm64.tar.gz
      9.7 MiB
      2025-11-20 04:53:19 -05:00
    • netbird_0.59.9.wasm
      46 MiB
      2025-11-20 04:52:01 -05:00
    • netbird_installer_0.59.9_windows_amd64.exe
      29 MiB
      2025-11-20 04:53:27 -05:00
    • netbird_installer_0.59.9_windows_amd64.msi
      34 MiB
      2025-11-20 04:53:31 -05:00
    • netbird_installer_0.59.9_windows_arm64.exe
      17 MiB
      2025-11-20 04:53:34 -05:00
    • netbird_installer_0.59.9_windows_arm64.msi
      20 MiB
      2025-11-20 04:53:38 -05:00
    • netbird-ui_0.59.9_checksums.txt
      535 B
      2025-11-20 04:51:32 -05:00
    • netbird-ui_0.59.9_darwin_all_signed.zip
      29 MiB
      2025-11-20 04:51:40 -05:00
    • netbird-ui_0.59.9_darwin_all.tar.gz
      29 MiB
      2025-11-20 04:51:36 -05:00
    • netbird-ui_0.59.9_darwin_amd64_signed.zip
      15 MiB
      2025-11-20 04:51:44 -05:00
    • netbird-ui_0.59.9_darwin_amd64.tar.gz
      15 MiB
      2025-11-20 04:51:42 -05:00
    • netbird-ui_0.59.9_darwin_arm64_signed.zip
      14 MiB
      2025-11-20 04:51:49 -05:00
    • netbird-ui_0.59.9_darwin_arm64.tar.gz
      14 MiB
      2025-11-20 04:51:47 -05:00
    • netbird-ui_0.59.9_linux_amd64.deb
      16 MiB
      2025-11-20 04:51:52 -05:00
    • netbird-ui_0.59.9_linux_amd64.rpm
      16 MiB
      2025-11-20 04:51:54 -05:00
    • netbird-ui_darwin_checksums.txt
      310 B
      2025-11-20 04:51:55 -05:00
    • netbird-ui-linux_0.59.9_linux_amd64.tar.gz
      15 MiB
      2025-11-20 04:51:26 -05:00
    • netbird-ui-windows_0.59.9_windows_amd64.tar.gz
      15 MiB
      2025-11-20 04:51:29 -05:00
    • netbird-ui-windows_0.59.9_windows_arm64.tar.gz
      14 MiB
      2025-11-20 04:51:31 -05:00
    • Source Code (ZIP)
    • Source Code (TAR.GZ)
  • v0.59.8 96f71ff1e1
    Compare

    Stable

    saavagebueno released this 2025-10-21 13:23:11 -04:00 | 356 commits to main since this release

    📅 Originally published on GitHub: Tue, 21 Oct 2025 17:36:04 GMT
    🏷️ Git tag created: Tue, 21 Oct 2025 17:23:11 GMT

    What's Changed

    • [Snyk] Security upgrade alpine from 3.22.0 to 3.22.2 by @mlsmaycon in https://github.com/netbirdio/netbird/pull/4618
    • [management] Delete TURNConfig section from script by @braginini in https://github.com/netbirdio/netbird/pull/4639
    • [client] Clean up match domain reg entries between config changes by @lixmal in https://github.com/netbirdio/netbird/pull/4676
    • [misc] Update tag name extraction in install.sh by @mlsmaycon in https://github.com/netbirdio/netbird/pull/4677

    Full Changelog: https://github.com/netbirdio/netbird/compare/v0.59.7...v0.59.8

    Downloads
    • getting-started-with-zitadel.sh
      29 KiB
      2025-11-20 04:50:36 -05:00
    • install.sh
      14 KiB
      2025-11-20 04:50:37 -05:00
    • netbird_0.59.8_checksums.txt
      2.8 KiB
      2025-11-20 04:51:18 -05:00
    • netbird_0.59.8_darwin_all.tar.gz
      20 MiB
      2025-11-20 04:51:26 -05:00
    • netbird_0.59.8_darwin_amd64.pkg
      25 MiB
      2025-11-20 04:51:30 -05:00
    • netbird_0.59.8_darwin_amd64.tar.gz
      10 MiB
      2025-11-20 04:51:32 -05:00
    • netbird_0.59.8_darwin_arm64.pkg
      24 MiB
      2025-11-20 04:51:36 -05:00
    • netbird_0.59.8_darwin_arm64.tar.gz
      10 MiB
      2025-11-20 04:51:38 -05:00
    • netbird_0.59.8_darwin.pkg
      49 MiB
      2025-11-20 04:51:23 -05:00
    • netbird_0.59.8_linux_386.deb
      11 MiB
      2025-11-20 04:51:40 -05:00
    • netbird_0.59.8_linux_386.rpm
      12 MiB
      2025-11-20 04:51:42 -05:00
    • netbird_0.59.8_linux_386.tar.gz
      11 MiB
      2025-11-20 04:51:45 -05:00
    • netbird_0.59.8_linux_amd64.deb
      12 MiB
      2025-11-20 04:51:47 -05:00
    • netbird_0.59.8_linux_amd64.rpm
      12 MiB
      2025-11-20 04:51:50 -05:00
    • netbird_0.59.8_linux_amd64.tar.gz
      12 MiB
      2025-11-20 04:51:52 -05:00
    • netbird_0.59.8_linux_arm64.deb
      11 MiB
      2025-11-20 04:51:54 -05:00
    • netbird_0.59.8_linux_arm64.rpm
      11 MiB
      2025-11-20 04:51:56 -05:00
    • netbird_0.59.8_linux_arm64.tar.gz
      11 MiB
      2025-11-20 04:51:58 -05:00
    • netbird_0.59.8_linux_armv6.deb
      11 MiB
      2025-11-20 04:52:00 -05:00
    • netbird_0.59.8_linux_armv6.rpm
      11 MiB
      2025-11-20 04:52:02 -05:00
    • netbird_0.59.8_linux_armv6.tar.gz
      11 MiB
      2025-11-20 04:52:04 -05:00
    • netbird_0.59.8_linux_mips_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:52:21 -05:00
    • netbird_0.59.8_linux_mips_softfloat.tar.gz
      10 MiB
      2025-11-20 04:52:23 -05:00
    • netbird_0.59.8_linux_mips64_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:52:11 -05:00
    • netbird_0.59.8_linux_mips64_softfloat.tar.gz
      10 MiB
      2025-11-20 04:52:13 -05:00
    • netbird_0.59.8_linux_mips64le_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:52:06 -05:00
    • netbird_0.59.8_linux_mips64le_softfloat.tar.gz
      10 MiB
      2025-11-20 04:52:09 -05:00
    • netbird_0.59.8_linux_mipsle_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:52:15 -05:00
    • netbird_0.59.8_linux_mipsle_softfloat.tar.gz
      10 MiB
      2025-11-20 04:52:17 -05:00
    • netbird_0.59.8_windows_amd64_signed.tar.gz
      39 MiB
      2025-11-20 04:52:32 -05:00
    • netbird_0.59.8_windows_amd64.tar.gz
      11 MiB
      2025-11-20 04:52:26 -05:00
    • netbird_0.59.8_windows_arm64_signed.tar.gz
      23 MiB
      2025-11-20 04:52:38 -05:00
    • netbird_0.59.8_windows_arm64.tar.gz
      9.7 MiB
      2025-11-20 04:52:35 -05:00
    • netbird_0.59.8.wasm
      46 MiB
      2025-11-20 04:51:17 -05:00
    • netbird_installer_0.59.8_windows_amd64.exe
      29 MiB
      2025-11-20 04:52:43 -05:00
    • netbird_installer_0.59.8_windows_amd64.msi
      34 MiB
      2025-11-20 04:52:48 -05:00
    • netbird_installer_0.59.8_windows_arm64.exe
      17 MiB
      2025-11-20 04:52:51 -05:00
    • netbird_installer_0.59.8_windows_arm64.msi
      20 MiB
      2025-11-20 04:52:54 -05:00
    • netbird-ui_0.59.8_checksums.txt
      535 B
      2025-11-20 04:50:49 -05:00
    • netbird-ui_0.59.8_darwin_all_signed.zip
      29 MiB
      2025-11-20 04:50:56 -05:00
    • netbird-ui_0.59.8_darwin_all.tar.gz
      29 MiB
      2025-11-20 04:50:53 -05:00
    • netbird-ui_0.59.8_darwin_amd64_signed.zip
      15 MiB
      2025-11-20 04:51:01 -05:00
    • netbird-ui_0.59.8_darwin_amd64.tar.gz
      15 MiB
      2025-11-20 04:50:59 -05:00
    • netbird-ui_0.59.8_darwin_arm64_signed.zip
      14 MiB
      2025-11-20 04:51:06 -05:00
    • netbird-ui_0.59.8_darwin_arm64.tar.gz
      14 MiB
      2025-11-20 04:51:04 -05:00
    • netbird-ui_0.59.8_linux_amd64.deb
      16 MiB
      2025-11-20 04:51:09 -05:00
    • netbird-ui_0.59.8_linux_amd64.rpm
      16 MiB
      2025-11-20 04:51:11 -05:00
    • netbird-ui_darwin_checksums.txt
      310 B
      2025-11-20 04:51:12 -05:00
    • netbird-ui-linux_0.59.8_linux_amd64.tar.gz
      15 MiB
      2025-11-20 04:50:39 -05:00
    • netbird-ui-windows_0.59.8_windows_amd64.tar.gz
      15 MiB
      2025-11-20 04:50:41 -05:00
    • netbird-ui-windows_0.59.8_windows_arm64.tar.gz
      14 MiB
      2025-11-20 04:50:43 -05:00
    • Source Code (ZIP)
    • Source Code (TAR.GZ)
  • v0.59.7 f5301230bf
    Compare

    Stable

    saavagebueno released this 2025-10-17 07:31:15 -04:00 | 360 commits to main since this release

    📅 Originally published on GitHub: Fri, 17 Oct 2025 17:29:15 GMT
    🏷️ Git tag created: Fri, 17 Oct 2025 11:31:15 GMT

    What's Changed

    • [management] feat: Basic PocketID IDP integration by @jfrconley in https://github.com/netbirdio/netbird/pull/4529
    • [client] Fix missing flag values in profiles by @lixmal in https://github.com/netbirdio/netbird/pull/4650
    • [client] Add bind activity listener to bypass udp sockets by @lixmal in https://github.com/netbirdio/netbird/pull/4646
    • [client] Set default wireguard port for new profiles by @lixmal in https://github.com/netbirdio/netbird/pull/4651
    • [client] Fix nil pointer when run debug bundle by @pappz in https://github.com/netbirdio/netbird/pull/4652
    • [client] Remove rule squashing by @lixmal in https://github.com/netbirdio/netbird/pull/4653
    • [client] Support BROWSER env for login by @lixmal in https://github.com/netbirdio/netbird/pull/4654
    • [client] Fix status showing P2P without connection by @lixmal in https://github.com/netbirdio/netbird/pull/4661

    New Contributors

    • @jfrconley made their first contribution in https://github.com/netbirdio/netbird/pull/4529

    Full Changelog: https://github.com/netbirdio/netbird/compare/v0.59.6...v0.59.7

    Downloads
    • getting-started-with-zitadel.sh
      29 KiB
      2025-11-20 04:49:23 -05:00
    • install.sh
      14 KiB
      2025-11-20 04:49:24 -05:00
    • netbird_0.59.7_checksums.txt
      2.8 KiB
      2025-11-20 04:50:00 -05:00
    • netbird_0.59.7_darwin_all.tar.gz
      20 MiB
      2025-11-20 04:50:07 -05:00
    • netbird_0.59.7_darwin_amd64.pkg
      25 MiB
      2025-11-20 04:50:10 -05:00
    • netbird_0.59.7_darwin_amd64.tar.gz
      10 MiB
      2025-11-20 04:50:12 -05:00
    • netbird_0.59.7_darwin_arm64.pkg
      24 MiB
      2025-11-20 04:50:14 -05:00
    • netbird_0.59.7_darwin_arm64.tar.gz
      10 MiB
      2025-11-20 04:50:16 -05:00
    • netbird_0.59.7_darwin.pkg
      49 MiB
      2025-11-20 04:50:04 -05:00
    • netbird_0.59.7_linux_386.deb
      11 MiB
      2025-11-20 04:50:17 -05:00
    • netbird_0.59.7_linux_386.rpm
      12 MiB
      2025-11-20 04:50:19 -05:00
    • netbird_0.59.7_linux_386.tar.gz
      11 MiB
      2025-11-20 04:50:21 -05:00
    • netbird_0.59.7_linux_amd64.deb
      12 MiB
      2025-11-20 04:50:23 -05:00
    • netbird_0.59.7_linux_amd64.rpm
      12 MiB
      2025-11-20 04:50:25 -05:00
    • netbird_0.59.7_linux_amd64.tar.gz
      12 MiB
      2025-11-20 04:50:26 -05:00
    • netbird_0.59.7_linux_arm64.deb
      11 MiB
      2025-11-20 04:50:28 -05:00
    • netbird_0.59.7_linux_arm64.rpm
      11 MiB
      2025-11-20 04:50:30 -05:00
    • netbird_0.59.7_linux_arm64.tar.gz
      11 MiB
      2025-11-20 04:50:32 -05:00
    • netbird_0.59.7_linux_armv6.deb
      11 MiB
      2025-11-20 04:50:33 -05:00
    • netbird_0.59.7_linux_armv6.rpm
      11 MiB
      2025-11-20 04:50:35 -05:00
    • netbird_0.59.7_linux_armv6.tar.gz
      11 MiB
      2025-11-20 04:50:37 -05:00
    • netbird_0.59.7_linux_mips_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:50:49 -05:00
    • netbird_0.59.7_linux_mips_softfloat.tar.gz
      10 MiB
      2025-11-20 04:50:51 -05:00
    • netbird_0.59.7_linux_mips64_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:50:42 -05:00
    • netbird_0.59.7_linux_mips64_softfloat.tar.gz
      10 MiB
      2025-11-20 04:50:43 -05:00
    • netbird_0.59.7_linux_mips64le_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:50:38 -05:00
    • netbird_0.59.7_linux_mips64le_softfloat.tar.gz
      10 MiB
      2025-11-20 04:50:40 -05:00
    • netbird_0.59.7_linux_mipsle_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:50:45 -05:00
    • netbird_0.59.7_linux_mipsle_softfloat.tar.gz
      10 MiB
      2025-11-20 04:50:47 -05:00
    • netbird_0.59.7_windows_amd64_signed.tar.gz
      39 MiB
      2025-11-20 04:50:59 -05:00
    • netbird_0.59.7_windows_amd64.tar.gz
      11 MiB
      2025-11-20 04:50:52 -05:00
    • netbird_0.59.7_windows_arm64_signed.tar.gz
      23 MiB
      2025-11-20 04:51:06 -05:00
    • netbird_0.59.7_windows_arm64.tar.gz
      9.7 MiB
      2025-11-20 04:51:01 -05:00
    • netbird_0.59.7.wasm
      46 MiB
      2025-11-20 04:49:59 -05:00
    • netbird_installer_0.59.7_windows_amd64.exe
      29 MiB
      2025-11-20 04:51:10 -05:00
    • netbird_installer_0.59.7_windows_amd64.msi
      34 MiB
      2025-11-20 04:51:15 -05:00
    • netbird_installer_0.59.7_windows_arm64.exe
      17 MiB
      2025-11-20 04:51:17 -05:00
    • netbird_installer_0.59.7_windows_arm64.msi
      20 MiB
      2025-11-20 04:51:20 -05:00
    • netbird-ui_0.59.7_checksums.txt
      535 B
      2025-11-20 04:49:32 -05:00
    • netbird-ui_0.59.7_darwin_all_signed.zip
      29 MiB
      2025-11-20 04:49:40 -05:00
    • netbird-ui_0.59.7_darwin_all.tar.gz
      29 MiB
      2025-11-20 04:49:36 -05:00
    • netbird-ui_0.59.7_darwin_amd64_signed.zip
      15 MiB
      2025-11-20 04:49:45 -05:00
    • netbird-ui_0.59.7_darwin_amd64.tar.gz
      15 MiB
      2025-11-20 04:49:43 -05:00
    • netbird-ui_0.59.7_darwin_arm64_signed.zip
      14 MiB
      2025-11-20 04:49:49 -05:00
    • netbird-ui_0.59.7_darwin_arm64.tar.gz
      14 MiB
      2025-11-20 04:49:47 -05:00
    • netbird-ui_0.59.7_linux_amd64.deb
      16 MiB
      2025-11-20 04:49:51 -05:00
    • netbird-ui_0.59.7_linux_amd64.rpm
      16 MiB
      2025-11-20 04:49:53 -05:00
    • netbird-ui_darwin_checksums.txt
      310 B
      2025-11-20 04:49:54 -05:00
    • netbird-ui-linux_0.59.7_linux_amd64.tar.gz
      15 MiB
      2025-11-20 04:49:26 -05:00
    • netbird-ui-windows_0.59.7_windows_amd64.tar.gz
      15 MiB
      2025-11-20 04:49:30 -05:00
    • netbird-ui-windows_0.59.7_windows_arm64.tar.gz
      14 MiB
      2025-11-20 04:49:32 -05:00
    • Source Code (ZIP)
    • Source Code (TAR.GZ)
  • v0.59.6 000e99e7f3
    Compare

    Stable

    saavagebueno released this 2025-10-13 11:50:16 -04:00 | 368 commits to main since this release

    📅 Originally published on GitHub: Tue, 14 Oct 2025 13:56:34 GMT
    🏷️ Git tag created: Mon, 13 Oct 2025 15:50:16 GMT


    What's Changed

    • [managament] sync all other peers on peer add/remove by @hakansa in https://github.com/netbirdio/netbird/pull/4614
    • [client] Explicitly disable DNSOverTLS for systemd-resolved by @kleschenko in https://github.com/netbirdio/netbird/pull/4579
    • [management] pass temporary flag to validator by @pascal-fischer in https://github.com/netbirdio/netbird/pull/4599
    • [misc] Add service definition for netbird-signal by @mlsmaycon in https://github.com/netbirdio/netbird/pull/4620
    • [client] Force TLS1.2 for RDP with Win11/Server2025 for CredSSP compatibility by @lixmal in https://github.com/netbirdio/netbird/pull/4617

    New Contributors

    • @kleschenko made their first contribution in https://github.com/netbirdio/netbird/pull/4579

    Full Changelog: https://github.com/netbirdio/netbird/compare/v0.59.5...v0.59.6

    Downloads
    • getting-started-with-zitadel.sh
      29 KiB
      2025-11-20 04:47:37 -05:00
    • install.sh
      14 KiB
      2025-11-20 04:47:38 -05:00
    • netbird_0.59.6_checksums.txt
      2.8 KiB
      2025-11-20 04:48:08 -05:00
    • netbird_0.59.6_darwin_all.tar.gz
      20 MiB
      2025-11-20 04:48:15 -05:00
    • netbird_0.59.6_darwin_amd64.pkg
      25 MiB
      2025-11-20 04:48:18 -05:00
    • netbird_0.59.6_darwin_amd64.tar.gz
      10 MiB
      2025-11-20 04:48:20 -05:00
    • netbird_0.59.6_darwin_arm64.pkg
      24 MiB
      2025-11-20 04:48:23 -05:00
    • netbird_0.59.6_darwin_arm64.tar.gz
      10 MiB
      2025-11-20 04:48:25 -05:00
    • netbird_0.59.6_darwin.pkg
      49 MiB
      2025-11-20 04:48:13 -05:00
    • netbird_0.59.6_linux_386.deb
      11 MiB
      2025-11-20 04:48:27 -05:00
    • netbird_0.59.6_linux_386.rpm
      12 MiB
      2025-11-20 04:48:28 -05:00
    • netbird_0.59.6_linux_386.tar.gz
      11 MiB
      2025-11-20 04:48:30 -05:00
    • netbird_0.59.6_linux_amd64.deb
      12 MiB
      2025-11-20 04:48:32 -05:00
    • netbird_0.59.6_linux_amd64.rpm
      12 MiB
      2025-11-20 04:48:34 -05:00
    • netbird_0.59.6_linux_amd64.tar.gz
      12 MiB
      2025-11-20 04:48:36 -05:00
    • netbird_0.59.6_linux_arm64.deb
      11 MiB
      2025-11-20 04:48:37 -05:00
    • netbird_0.59.6_linux_arm64.rpm
      11 MiB
      2025-11-20 04:48:39 -05:00
    • netbird_0.59.6_linux_arm64.tar.gz
      11 MiB
      2025-11-20 04:48:41 -05:00
    • netbird_0.59.6_linux_armv6.deb
      11 MiB
      2025-11-20 04:48:43 -05:00
    • netbird_0.59.6_linux_armv6.rpm
      11 MiB
      2025-11-20 04:48:45 -05:00
    • netbird_0.59.6_linux_armv6.tar.gz
      11 MiB
      2025-11-20 04:48:46 -05:00
    • netbird_0.59.6_linux_mips_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:48:58 -05:00
    • netbird_0.59.6_linux_mips_softfloat.tar.gz
      10 MiB
      2025-11-20 04:49:00 -05:00
    • netbird_0.59.6_linux_mips64_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:48:51 -05:00
    • netbird_0.59.6_linux_mips64_softfloat.tar.gz
      10 MiB
      2025-11-20 04:48:53 -05:00
    • netbird_0.59.6_linux_mips64le_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:48:48 -05:00
    • netbird_0.59.6_linux_mips64le_softfloat.tar.gz
      10 MiB
      2025-11-20 04:48:50 -05:00
    • netbird_0.59.6_linux_mipsle_hardfloat.tar.gz
      10 MiB
      2025-11-20 04:48:55 -05:00
    • netbird_0.59.6_linux_mipsle_softfloat.tar.gz
      10 MiB
      2025-11-20 04:48:56 -05:00
    • netbird_0.59.6_windows_amd64_signed.tar.gz
      39 MiB
      2025-11-20 04:49:06 -05:00
    • netbird_0.59.6_windows_amd64.tar.gz
      11 MiB
      2025-11-20 04:49:02 -05:00
    • netbird_0.59.6_windows_arm64_signed.tar.gz
      23 MiB
      2025-11-20 04:49:10 -05:00
    • netbird_0.59.6_windows_arm64.tar.gz
      9.7 MiB
      2025-11-20 04:49:07 -05:00
    • netbird_0.59.6.wasm
      46 MiB
      2025-11-20 04:48:08 -05:00
    • netbird_installer_0.59.6_windows_amd64.exe
      29 MiB
      2025-11-20 04:49:13 -05:00
    • netbird_installer_0.59.6_windows_amd64.msi
      34 MiB
      2025-11-20 04:49:16 -05:00
    • netbird_installer_0.59.6_windows_arm64.exe
      17 MiB
      2025-11-20 04:49:19 -05:00
    • netbird_installer_0.59.6_windows_arm64.msi
      20 MiB
      2025-11-20 04:49:21 -05:00
    • netbird-ui_0.59.6_checksums.txt
      535 B
      2025-11-20 04:47:44 -05:00
    • netbird-ui_0.59.6_darwin_all_signed.zip
      29 MiB
      2025-11-20 04:47:50 -05:00
    • netbird-ui_0.59.6_darwin_all.tar.gz
      29 MiB
      2025-11-20 04:47:47 -05:00
    • netbird-ui_0.59.6_darwin_amd64_signed.zip
      15 MiB
      2025-11-20 04:47:54 -05:00
    • netbird-ui_0.59.6_darwin_amd64.tar.gz
      15 MiB
      2025-11-20 04:47:52 -05:00
    • netbird-ui_0.59.6_darwin_arm64_signed.zip
      14 MiB
      2025-11-20 04:47:59 -05:00
    • netbird-ui_0.59.6_darwin_arm64.tar.gz
      14 MiB
      2025-11-20 04:47:56 -05:00
    • netbird-ui_0.59.6_linux_amd64.deb
      16 MiB
      2025-11-20 04:48:00 -05:00
    • netbird-ui_0.59.6_linux_amd64.rpm
      16 MiB
      2025-11-20 04:48:03 -05:00
    • netbird-ui_darwin_checksums.txt
      310 B
      2025-11-20 04:48:03 -05:00
    • netbird-ui-linux_0.59.6_linux_amd64.tar.gz
      15 MiB
      2025-11-20 04:47:40 -05:00
    • netbird-ui-windows_0.59.6_windows_amd64.tar.gz
      15 MiB
      2025-11-20 04:47:41 -05:00
    • netbird-ui-windows_0.59.6_windows_arm64.tar.gz
      14 MiB
      2025-11-20 04:47:43 -05:00
    • Source Code (ZIP)
    • Source Code (TAR.GZ)
Powered by Dynasty Revolution Version: 1.25.4 Page: 86ms Template: 24ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses DYNR Forum DISCORD