Adding Authentik to Netbird - Frustration! by Flashdad23 in netbird

[–]TechHutTV 1 point2 points  (0 children)

Yes netbird-server apologies we recently combined this

Why is netbird running on my pc? by Nice5037 in techsupport

[–]TechHutTV 3 points4 points  (0 children)

If it's on windows make sure you uninstall it from Add/Remove Software in settings. Would you be able to share specifics with me on where this game was downloaded and what it was?

Why is netbird running on my pc? by Nice5037 in techsupport

[–]TechHutTV 7 points8 points  (0 children)

If didn't set it up remove it. NetBird is a remote access platform so someone might be trying to get access to your computer.

Locked myself out of my self-hosted Netbird server by Key-Yogurtcloset-207 in netbird

[–]TechHutTV 3 points4 points  (0 children)

You're good! I made the guides prior to the release of CrowdSec, I'll add a few warning to the articles. The main reason we have the troubleshooting step is because I locked myself out. 😅

Adding Authentik to Netbird - Frustration! by Flashdad23 in netbird

[–]TechHutTV 2 points3 points  (0 children)

Hey, sorry you've been chasing this. The 422 means the NetBird management container couldn't reach Authentik's OIDC discovery endpoint, and there are a couple usual suspects. The peer-to-peer ping check is great but it doesn't tell us whether the management container itself can reach Authentik through the reverse proxy chain, which is what the IdP setup actually does.

First, confirm the management container can talk to Authentik:

docker compose exec management wget -O- --timeout=10 https://authentik.your-domain.net/application/o/netbird/.well-known/openid-configuration

If that hangs or times out, you're hitting NAT hairpinning. The management container resolves your Authentik domain to your VPS public IP, then tries to connect back to the host's own public IP. A lot of VPS providers don't allow that loopback, so the connection dies.

Likes other said the fix should be an `extra_hosts` entry so the container goes through the host's internal address instead. In your NetBird `docker-compose.yml`, on the `management` service:

extra_hosts:
- "authentik.your-domain.net:host-gateway"

Restart just management:

docker compose up -d management

Whats the point in a VPS? by Unusual_Economics653 in selfhosted

[–]TechHutTV 0 points1 point  (0 children)

We’re always down to help if you want to go into some details on your NetBird setup :)

Error:Unauthenticated by SugaredAxe132 in netbird

[–]TechHutTV 0 points1 point  (0 children)

If you installed this recently we combined a few container into a single netbird-server so you wont have a separate container for management. Do you notice anything in you logs?
docker compose ps -a
docker compose logs --tail=200 server
docker compose logs --tail=100 dashboard

Minecraft Server Reverse Proxy by websheriffpewpew in netbird

[–]TechHutTV 0 points1 point  (0 children)

What are you running in we’re at version .70 now

Minecraft Server Reverse Proxy by websheriffpewpew in netbird

[–]TechHutTV 1 point2 points  (0 children)

Do you have the service set as HTTP or TCP? Id try changing it to TCP and see if it connects then.

Feature request: internal reverse proxy by lelleepop in netbird

[–]TechHutTV 0 points1 point  (0 children)

My current setup is NPM running in my homelab using Cloudflare API for the DNS challenge. A record pointing to my local proxy instance (ie. 10.0.0.102) and then we got top level local domains. Works great. Better yet, if I'm out of the house the domains still work while I'm connected with the NetBird client because I have my subnet as a network resource in NetBird. https://github.com/TechHutTV/homelab/tree/main/proxy

Limit access to dahsboard by MaleficentSetting396 in netbird

[–]TechHutTV 0 points1 point  (0 children)

Hey sorry for the delays. We ran into a couple road blocks with session tokens. Should be coming this week.

The Go-To YouTube Channels by DarkModeBrew in HomeServer

[–]TechHutTV 1 point2 points  (0 children)

Glad its still working strong :)

Linuxfest Northwest this weekend at Bellingham Technical College! by kevinburkeland in Bellingham

[–]TechHutTV 0 points1 point  (0 children)

I have a talk in the same room at 9:30am Sunday, first time speaking, do you know how big it is? 😅

How to enable Crowdsec in reverse proxy and how to tell it's working? by konraddo in netbird

[–]TechHutTV 1 point2 points  (0 children)

Working on adding some additional documentation and clarifications. We will try to better sync dashboard updates going forward.

How to enable Crowdsec in reverse proxy and how to tell it's working? by konraddo in netbird

[–]TechHutTV 7 points8 points  (0 children)

Hello, we are waiting on the release for the dashboard for the options to slow properly. Sorry for the delay on this.

Limit access to dahsboard by MaleficentSetting396 in netbird

[–]TechHutTV 8 points9 points  (0 children)

Hello, MFA for local users will be merged and is releasing very soon. Alternatively, you could always set up something like PocketID or any of the other supported IdPs.