Unable to connect to overlay network after hibernation or changing the docking status on macos #1020

Closed
opened 2025-11-20 05:21:56 -05:00 by saavagebueno · 29 comments
Owner

Originally created by @christian-schlichtherle on GitHub (Jun 25, 2024).

Describe the problem

After waking up my MacBook Pro from hibernation, Netbird fails to connect to the overlay network again:

$ sudo netbird status
Error: status failed: create wg interface: resource busy
$ sudo ifconfig utun100
utun100: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1280
	inet 100.90.208.249 --> 100.90.208.249 netmask 0xff000000
	inet6 fe80::f22f:4bff:fe13:efad%utun100 prefixlen 64 scopeid 0x20 
	inet6 fe80::%utun100 prefixlen 64 scopeid 0x20 
	nd6 options=201<PERFORMNUD,DAD>
$ sudo netbird up
Connected
$ sudo netbird status
Error: status failed: create wg interface: resource busy
$ sudo ifconfig utun100
utun100: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1280
	inet 100.90.208.249 --> 100.90.208.249 netmask 0xff000000
	inet6 fe80::f22f:4bff:fe13:efad%utun100 prefixlen 64 scopeid 0x20 
	inet6 fe80::%utun100 prefixlen 64 scopeid 0x20 
	nd6 options=201<PERFORMNUD,DAD>

I have Netbird UI 0.28.2 installed. My machine has multiple network interfaces: When undocked, it's only connected to my WiFi. When being docked, it's also connected via a Thunderbolt Ethernet adapter with 10Gbps, so when docking/undocking my notebook the OS is actually roaming. This may or may not be related to the problem.

I can do netbird down, netbird up, but it doesn't reconnect again. Wireguard stays unconnected:

$ sudo wg show
interface: utun100
  public key: (not shown)
  private key: (hidden)
  listening port: 51820

The only way to reconnect is to reboot the OS, which is very annoying. Is there another workaround at least?

Expected behavior

Netbird should automatically reconnect to the overlay network after waking up the machine from hibernation or undocking/docking it.

Are you using NetBird Cloud?

Yes.

NetBird version

0.28.2

NetBird status -d output:

$ sudo netbird status -d
Error: status failed: create wg interface: resource busy
Originally created by @christian-schlichtherle on GitHub (Jun 25, 2024). **Describe the problem** After waking up my MacBook Pro from hibernation, Netbird fails to connect to the overlay network again: ```shell $ sudo netbird status Error: status failed: create wg interface: resource busy $ sudo ifconfig utun100 utun100: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1280 inet 100.90.208.249 --> 100.90.208.249 netmask 0xff000000 inet6 fe80::f22f:4bff:fe13:efad%utun100 prefixlen 64 scopeid 0x20 inet6 fe80::%utun100 prefixlen 64 scopeid 0x20 nd6 options=201<PERFORMNUD,DAD> $ sudo netbird up Connected $ sudo netbird status Error: status failed: create wg interface: resource busy $ sudo ifconfig utun100 utun100: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1280 inet 100.90.208.249 --> 100.90.208.249 netmask 0xff000000 inet6 fe80::f22f:4bff:fe13:efad%utun100 prefixlen 64 scopeid 0x20 inet6 fe80::%utun100 prefixlen 64 scopeid 0x20 nd6 options=201<PERFORMNUD,DAD> ``` I have Netbird UI 0.28.2 installed. My machine has multiple network interfaces: When undocked, it's only connected to my WiFi. When being docked, it's also connected via a Thunderbolt Ethernet adapter with 10Gbps, so when docking/undocking my notebook the OS is actually roaming. This may or may not be related to the problem. I can do `netbird down`, `netbird up`, but it doesn't reconnect again. Wireguard stays unconnected: ```shell $ sudo wg show interface: utun100 public key: (not shown) private key: (hidden) listening port: 51820 ``` The only way to reconnect is to reboot the OS, which is very annoying. Is there another workaround at least? **Expected behavior** Netbird should automatically reconnect to the overlay network after waking up the machine from hibernation or undocking/docking it. **Are you using NetBird Cloud?** Yes. **NetBird version** 0.28.2 **NetBird status -d output:** ```shell $ sudo netbird status -d Error: status failed: create wg interface: resource busy ```
saavagebueno added the bugclientwaiting-feedbacknetworkingmacos labels 2025-11-20 05:21:56 -05:00
Author
Owner

@mlsmaycon commented on GitHub (Jun 25, 2024):

@christian-schlichtherle can you upgrade to 0.28.3 and enable the network monitor with:

netbird down
netbird up -N
@mlsmaycon commented on GitHub (Jun 25, 2024): @christian-schlichtherle can you upgrade to 0.28.3 and enable the network monitor with: ``` netbird down netbird up -N ```
Author
Owner

@hurricanehrndz commented on GitHub (Jun 25, 2024):

This is related to https://github.com/netbirdio/netbird/issues/2130

@hurricanehrndz commented on GitHub (Jun 25, 2024): This is related to https://github.com/netbirdio/netbird/issues/2130
Author
Owner

@christian-schlichtherle commented on GitHub (Jun 25, 2024):

After upgrading to 0.28.3, a first test seems to be successful: After wakeup from hibernation for some minutes, the Netbird client reconnects to the other peers one by one:

$ netbird status
OS: darwin/arm64
Daemon version: 0.28.3
CLI version: 0.28.3
Management: Connected
Signal: Connected
Relays: 2/2 Available
Nameservers: 0/0 Available
FQDN: (not shown)
NetBird IP: 100.90.208.249/16
Interface type: Userspace
Quantum resistance: false
Routes: -
Peers count: 10/10 Connected

I still have to test the docking/undocking scenario, so please don't close this ticket yet.

@christian-schlichtherle commented on GitHub (Jun 25, 2024): After upgrading to 0.28.3, a first test seems to be successful: After wakeup from hibernation for some minutes, the Netbird client reconnects to the other peers one by one: ```shell $ netbird status OS: darwin/arm64 Daemon version: 0.28.3 CLI version: 0.28.3 Management: Connected Signal: Connected Relays: 2/2 Available Nameservers: 0/0 Available FQDN: (not shown) NetBird IP: 100.90.208.249/16 Interface type: Userspace Quantum resistance: false Routes: - Peers count: 10/10 Connected ``` I still have to test the docking/undocking scenario, so please don't close this ticket yet.
Author
Owner

@hurricanehrndz commented on GitHub (Jun 25, 2024):

Yeah it is because of multiple interfaces, I am going to get a PR ready, hopefully Netbird team can fix it and make it pretty for their standards

@hurricanehrndz commented on GitHub (Jun 25, 2024): Yeah it is because of multiple interfaces, I am going to get a PR ready, hopefully Netbird team can fix it and make it pretty for their standards
Author
Owner

@hurricanehrndz commented on GitHub (Jun 25, 2024):

@christian-schlichtherle feel free to test out the branch if you know how

@hurricanehrndz commented on GitHub (Jun 25, 2024): @christian-schlichtherle feel free to test out the branch if you know how
Author
Owner

@mlsmaycon commented on GitHub (Jun 25, 2024):

@hurricanehrndz thanks for the PR, we will have a look and give you feedback ASAP.

@christian-schlichtherle If you want to test the PR change, you can download the files from here: https://github.com/netbirdio/netbird/actions/runs/9667635878/artifacts/1637361966 And replace the netbird bin in your system, probably /Applications/NetBird.app/Contents/MacOS/netbird with the one from the package. See the example steps below:

sudo netbird service stop
sudo cp extracted/bin/path/netbird /Applications/NetBird.app/Contents/MacOS/netbird
sudo chmod +x /Applications/NetBird.app/Contents/MacOS/netbird
sudo netbird service start
@mlsmaycon commented on GitHub (Jun 25, 2024): @hurricanehrndz thanks for the PR, we will have a look and give you feedback ASAP. @christian-schlichtherle If you want to test the PR change, you can download the files from here: https://github.com/netbirdio/netbird/actions/runs/9667635878/artifacts/1637361966 And replace the netbird bin in your system, probably `/Applications/NetBird.app/Contents/MacOS/netbird` with the one from the package. See the example steps below: ```shell sudo netbird service stop sudo cp extracted/bin/path/netbird /Applications/NetBird.app/Contents/MacOS/netbird sudo chmod +x /Applications/NetBird.app/Contents/MacOS/netbird sudo netbird service start ```
Author
Owner

@christian-schlichtherle commented on GitHub (Jun 26, 2024):

Following up my testing, after docking my notebook with 0.28.3 installed I run into the same problem again:

$ netbird status
Error: status failed: create wg interface: resource busy

Next, I will try the supplied patch.

PS: Same result when waking up from hibernation while being docked => The root cause is related to multiple NICs.

@christian-schlichtherle commented on GitHub (Jun 26, 2024): Following up my testing, after docking my notebook with 0.28.3 installed I run into the same problem again: ```shell $ netbird status Error: status failed: create wg interface: resource busy ``` Next, I will try the supplied patch. PS: Same result when waking up from hibernation while being docked => The root cause is related to multiple NICs.
Author
Owner

@christian-schlichtherle commented on GitHub (Jun 26, 2024):

I've installed the new client:

$ netbird status
OS: darwin/arm64
Daemon version: 0.28.3-SNAPSHOT-2c869542
CLI version: 0.28.3-SNAPSHOT-2c869542
Management: Connected
Signal: Connected
Relays: 2/2 Available
Nameservers: 0/0 Available
FQDN: (not shown)
NetBird IP: 100.90.208.249/16
Interface type: Userspace
Quantum resistance: false
Routes: -
Peers count: 10/10 Connected

BTW: Following semantic versioning, the version tag should be 0.28.4-SNAPSHOT-2c869542 because 0.28.3-SNAPSHOT-2c869542 implies that it's a pre-release to 0.28.3, but it's not. Maybe, just maybe that's why the Netbird UI is now suggesting to "Download the latest version"?

@christian-schlichtherle commented on GitHub (Jun 26, 2024): I've installed the new client: ```shell $ netbird status OS: darwin/arm64 Daemon version: 0.28.3-SNAPSHOT-2c869542 CLI version: 0.28.3-SNAPSHOT-2c869542 Management: Connected Signal: Connected Relays: 2/2 Available Nameservers: 0/0 Available FQDN: (not shown) NetBird IP: 100.90.208.249/16 Interface type: Userspace Quantum resistance: false Routes: - Peers count: 10/10 Connected ``` BTW: Following semantic versioning, the version tag should be `0.28.4-SNAPSHOT-2c869542` because `0.28.3-SNAPSHOT-2c869542` implies that it's a pre-release to `0.28.3`, but it's not. Maybe, just maybe that's why the Netbird UI is now suggesting to "Download the latest version"?
Author
Owner

@christian-schlichtherle commented on GitHub (Jun 26, 2024):

I've completed the test series now: With the new snapshot version, I can dock/undock/hibernate my notebook in any fashion and it reconnects seamlessly - great!

I noticed something interesting however: When doing netbird status instantly after waking up from hibernation, it shows that there are still some connections available, e.g. 6/10. Then after the three seconds elapsed, it drops down to 0/10 and then ramps up to 10/10 again. This begs the question if the connection reset is really required after all?

As I understand this I can suppress it:

netbird down
netbird up --network-monitor=false

I will give that a try.

@christian-schlichtherle commented on GitHub (Jun 26, 2024): I've completed the test series now: With the new snapshot version, I can dock/undock/hibernate my notebook in any fashion and it reconnects seamlessly - great! I noticed something interesting however: When doing `netbird status` instantly after waking up from hibernation, it shows that there are still some connections available, e.g. 6/10. Then after the three seconds elapsed, it drops down to 0/10 and then ramps up to 10/10 again. This begs the question if the connection reset is really required after all? As I understand this I can suppress it: ```shell netbird down netbird up --network-monitor=false ``` I will give that a try.
Author
Owner

@hurricanehrndz commented on GitHub (Jun 26, 2024):

Network monitor is beneficial when you go from dock to wifi, because the primary route would change. You can test the negative behaviour by sshing to a device on the wireguard interface.

@hurricanehrndz commented on GitHub (Jun 26, 2024): Network monitor is beneficial when you go from dock to wifi, because the primary route would change. You can test the negative behaviour by sshing to a device on the wireguard interface.
Author
Owner

@fadyHemaya commented on GitHub (Jul 28, 2024):

I am still facing this issue on 0.28.4

2024-07-28T11:15:52+03:00 INFO client/internal/routemanager/manager.go:133: Routing setup complete
2024-07-28T11:15:52+03:00 ERRO client/internal/engine.go:332: failed creating tunnel interface utun100: [resource busy]
2024-07-28T11:15:52+03:00 INFO client/internal/routemanager/manager.go:168: Routing cleanup complete
2024-07-28T11:15:52+03:00 DEBG client/internal/engine.go:1236: removing Netbird interface utun100
2024-07-28T11:15:52+03:00 ERRO client/internal/connect.go:263: error while starting Netbird Connection Engine: create wg interface: resource busy
@fadyHemaya commented on GitHub (Jul 28, 2024): I am still facing this issue on 0.28.4 ``` 2024-07-28T11:15:52+03:00 INFO client/internal/routemanager/manager.go:133: Routing setup complete 2024-07-28T11:15:52+03:00 ERRO client/internal/engine.go:332: failed creating tunnel interface utun100: [resource busy] 2024-07-28T11:15:52+03:00 INFO client/internal/routemanager/manager.go:168: Routing cleanup complete 2024-07-28T11:15:52+03:00 DEBG client/internal/engine.go:1236: removing Netbird interface utun100 2024-07-28T11:15:52+03:00 ERRO client/internal/connect.go:263: error while starting Netbird Connection Engine: create wg interface: resource busy ```
Author
Owner

@hurricanehrndz commented on GitHub (Aug 7, 2024):

@fadyHemaya I can try and tweak the current code to see if we can get a build with better results

@hurricanehrndz commented on GitHub (Aug 7, 2024): @fadyHemaya I can try and tweak the current code to see if we can get a build with better results
Author
Owner

@pascal-fischer commented on GitHub (Aug 7, 2024):

Hi @fadyHemaya, we introduced a waiting mechanism into the netbird down command to wait until all the processes stopped and the wireguard interface is being removed. This change was released in version 0.28.5. Could you upgrade to a newer version and see if you are still facing this issue?

@pascal-fischer commented on GitHub (Aug 7, 2024): Hi @fadyHemaya, we introduced a waiting mechanism into the netbird down command to wait until all the processes stopped and the wireguard interface is being removed. This change was released in version 0.28.5. Could you upgrade to a newer version and see if you are still facing this issue?
Author
Owner

@MxD-js commented on GitHub (Aug 13, 2024):

I'm on netbird 0.28.7 on m1 mac and issue is still present.

(base) user@Maxs-M1-Pro-Max ~ % netbird status
OS: darwin/arm64
Daemon version: 0.28.7
CLI version: 0.28.7
Management: Disconnected, reason: create wg interface: resource busy
Signal: Disconnected, reason: create wg interface: resource busy
Relays: 0/0 Available
Nameservers: 0/0 Available
FQDN: 
NetBird IP: N/A
Interface type: N/A
Quantum resistance: false
Routes: -
Peers count: 0/0 Connected
(base) user@Maxs-M1-Pro-Max ~ % 
@MxD-js commented on GitHub (Aug 13, 2024): I'm on netbird 0.28.7 on m1 mac and issue is still present. ``` (base) user@Maxs-M1-Pro-Max ~ % netbird status OS: darwin/arm64 Daemon version: 0.28.7 CLI version: 0.28.7 Management: Disconnected, reason: create wg interface: resource busy Signal: Disconnected, reason: create wg interface: resource busy Relays: 0/0 Available Nameservers: 0/0 Available FQDN: NetBird IP: N/A Interface type: N/A Quantum resistance: false Routes: - Peers count: 0/0 Connected (base) user@Maxs-M1-Pro-Max ~ % ```
Author
Owner

@1doce8 commented on GitHub (Aug 16, 2024):

+1 netbird 0.28.7 on m1 mac

@1doce8 commented on GitHub (Aug 16, 2024): +1 netbird 0.28.7 on m1 mac
Author
Owner

@axuan25 commented on GitHub (Aug 28, 2024):

Same here with 28.8 🙏

@axuan25 commented on GitHub (Aug 28, 2024): Same here with 28.8 🙏
Author
Owner

@rsalunga29 commented on GitHub (Sep 26, 2024):

Still facing the issue with v0.29.4 running on M3 Pro and Sonoma. The issue happens when I connect-disconnect a few times and only gets fixed whenever I restart my device. See logs:

2024-09-27T10:40:03+08:00 INFO client/internal/routemanager/manager.go:142: Routing setup complete
2024-09-27T10:40:03+08:00 ERRO client/internal/engine.go:334: failed creating tunnel interface utun100: [error creating tun device: resource busy]
2024-09-27T10:40:03+08:00 INFO client/internal/routemanager/manager.go:177: Routing cleanup complete
2024-09-27T10:40:03+08:00 DEBG client/internal/engine.go:1124: removing Netbird interface utun100
2024-09-27T10:40:08+08:00 INFO [relay: rel://netbird.anonymizeddomain.com:33080] relay/client/client.go:330: start to Relay read loop exit
2024-09-27T10:40:08+08:00 DEBG [relay: rel://netbird.anonymizeddomain.com:33080] relay/client/client.go:333: failed to read message from relay server: failed to get reader: failed to read frame header: EOF
2024-09-27T10:40:08+08:00 INFO [relay: rel://netbird.anonymizeddomain.com:33080] relay/client/client.go:521: closing all peer connections
2024-09-27T10:40:08+08:00 INFO [relay: rel://netbird.anonymizeddomain.com:33080] relay/client/client.go:529: waiting for read loop to close
2024-09-27T10:40:08+08:00 INFO [relay: rel://netbird.anonymizeddomain.com:33080] relay/client/client.go:531: relay connection closed
2024-09-27T10:40:08+08:00 WARN iface/iface.go:135: failed to remove WireGuard interface utun100: timeout when waiting for interface utun100 to be removed
2024-09-27T10:40:08+08:00 ERRO client/internal/engine.go:1127: failed closing Netbird interface utun100 failed to remove WireGuard interface utun100: failed to remove interface utun100: exit status 1 - ifconfig: SIOCIFDESTROY: Invalid argument
2024-09-27T10:40:08+08:00 ERRO client/internal/connect.go:282: error while starting Netbird Connection Engine: create wg interface: error creating tun device: resource busy
@rsalunga29 commented on GitHub (Sep 26, 2024): Still facing the issue with v0.29.4 running on M3 Pro and Sonoma. The issue happens when I connect-disconnect a few times and only gets fixed whenever I restart my device. See logs: ``` 2024-09-27T10:40:03+08:00 INFO client/internal/routemanager/manager.go:142: Routing setup complete 2024-09-27T10:40:03+08:00 ERRO client/internal/engine.go:334: failed creating tunnel interface utun100: [error creating tun device: resource busy] 2024-09-27T10:40:03+08:00 INFO client/internal/routemanager/manager.go:177: Routing cleanup complete 2024-09-27T10:40:03+08:00 DEBG client/internal/engine.go:1124: removing Netbird interface utun100 2024-09-27T10:40:08+08:00 INFO [relay: rel://netbird.anonymizeddomain.com:33080] relay/client/client.go:330: start to Relay read loop exit 2024-09-27T10:40:08+08:00 DEBG [relay: rel://netbird.anonymizeddomain.com:33080] relay/client/client.go:333: failed to read message from relay server: failed to get reader: failed to read frame header: EOF 2024-09-27T10:40:08+08:00 INFO [relay: rel://netbird.anonymizeddomain.com:33080] relay/client/client.go:521: closing all peer connections 2024-09-27T10:40:08+08:00 INFO [relay: rel://netbird.anonymizeddomain.com:33080] relay/client/client.go:529: waiting for read loop to close 2024-09-27T10:40:08+08:00 INFO [relay: rel://netbird.anonymizeddomain.com:33080] relay/client/client.go:531: relay connection closed 2024-09-27T10:40:08+08:00 WARN iface/iface.go:135: failed to remove WireGuard interface utun100: timeout when waiting for interface utun100 to be removed 2024-09-27T10:40:08+08:00 ERRO client/internal/engine.go:1127: failed closing Netbird interface utun100 failed to remove WireGuard interface utun100: failed to remove interface utun100: exit status 1 - ifconfig: SIOCIFDESTROY: Invalid argument 2024-09-27T10:40:08+08:00 ERRO client/internal/connect.go:282: error while starting Netbird Connection Engine: create wg interface: error creating tun device: resource busy ```
Author
Owner

@hurricanehrndz commented on GitHub (Sep 27, 2024):

@rsalunga29 can you verify that autoconnect and networkmonitor are both set to true in the config

When the issue occurs can you also share the output of the following

sudo lsof /var/run/wireguard/utun100.sock
ps aux | grep -i netbird | grep -v grep
@hurricanehrndz commented on GitHub (Sep 27, 2024): @rsalunga29 can you verify that autoconnect and networkmonitor are both set to true in the config When the issue occurs can you also share the output of the following ``` sudo lsof /var/run/wireguard/utun100.sock ps aux | grep -i netbird | grep -v grep ```
Author
Owner

@asvataa commented on GitHub (Sep 29, 2024):

+10 users with same error on versions 0.28.* 0.29.*

@asvataa commented on GitHub (Sep 29, 2024): +10 users with same error on versions 0.28.* 0.29.*
Author
Owner

@christian-schlichtherle commented on GitHub (Sep 30, 2024):

It used to work just fine with v0.28.4, but somewhere between this and v0.29.4 it stopped working. Looks like a regression to me.

@christian-schlichtherle commented on GitHub (Sep 30, 2024): It used to work just fine with v0.28.4, but somewhere between this and v0.29.4 it stopped working. Looks like a regression to me.
Author
Owner

@hurricanehrndz commented on GitHub (Sep 30, 2024):

Can we please get more information/logs, without the added information we really are guessing to what is going on.

@hurricanehrndz commented on GitHub (Sep 30, 2024): Can we please get more information/logs, without the added information we really are guessing to what is going on.
Author
Owner

@hurricanehrndz commented on GitHub (Sep 30, 2024):

@christian-schlichtherle can you test this version https://github.com/netbirdio/netbird/actions/runs/11110902617?pr=2676

@hurricanehrndz commented on GitHub (Sep 30, 2024): @christian-schlichtherle can you test this version https://github.com/netbirdio/netbird/actions/runs/11110902617?pr=2676
Author
Owner

@asvataa commented on GitHub (Oct 2, 2024):

@hurricanehrndz maybe I can help with it? Could you pls describe scenario of test?

@asvataa commented on GitHub (Oct 2, 2024): @hurricanehrndz maybe I can help with it? Could you pls describe scenario of test?
Author
Owner

@hurricanehrndz commented on GitHub (Oct 3, 2024):

@hurricanehrndz maybe I can help with it? Could you pls describe scenario of test?

In the link above you will see the artifacts for the main binary and the Ui replace the ones installed in the app bundle with the new ones, reboot

@hurricanehrndz commented on GitHub (Oct 3, 2024): > @hurricanehrndz maybe I can help with it? Could you pls describe scenario of test? In the link above you will see the artifacts for the main binary and the Ui replace the ones installed in the app bundle with the new ones, reboot
Author
Owner

@christian-schlichtherle commented on GitHub (Oct 7, 2024):

I'm sorry I'm late to this conversation. We have upgraded to 0.30.0 today. Let me see if the problem surfaces again.

@christian-schlichtherle commented on GitHub (Oct 7, 2024): I'm sorry I'm late to this conversation. We have upgraded to 0.30.0 today. Let me see if the problem surfaces again.
Author
Owner

@hurricanehrndz commented on GitHub (Oct 7, 2024):

Please do, as the PR was merged.

@hurricanehrndz commented on GitHub (Oct 7, 2024): Please do, as the PR was merged.
Author
Owner

@christian-schlichtherle commented on GitHub (Oct 8, 2024):

So far it works, but it's only one day later. ;-)

@christian-schlichtherle commented on GitHub (Oct 8, 2024): So far it works, but it's only one day later. ;-)
Author
Owner

@nazarewk commented on GitHub (Apr 28, 2025):

Hello @christian-schlichtherle,

We're currently reviewing our open issues and would like to verify if this problem still exists in the latest NetBird version.

Could you please confirm if the issue is still there?

We may close this issue temporarily if we don't hear back from you within 2 weeks, but feel free to reopen it with updated information.

Thanks for your contribution to improving the project!

@nazarewk commented on GitHub (Apr 28, 2025): Hello @christian-schlichtherle, We're currently reviewing our open issues and would like to verify if this problem still exists in the [latest NetBird version](https://github.com/netbirdio/netbird/releases). Could you please confirm if the issue is still there? We may close this issue temporarily if we don't hear back from you within **2 weeks**, but feel free to reopen it with updated information. Thanks for your contribution to improving the project!
Author
Owner

@christian-schlichtherle commented on GitHub (Apr 28, 2025):

This works fine now.

@christian-schlichtherle commented on GitHub (Apr 28, 2025): This works fine now.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: SVI/netbird#1020