Update Servers/Networking/VPN/Netbird.md
All checks were successful
GitOps Automatic Deployment / GitOps Automatic Deployment (push) Successful in 7s

This commit is contained in:
2025-08-29 14:06:59 -06:00
parent a48cdbd608
commit 84fa2b05bf

View File

@@ -2,7 +2,7 @@
Netbird is a free and open-source VPN server and client platform. The following document will illustrate how to deploy Netbird into a homelab or business environment. Netbird is a free and open-source VPN server and client platform. The following document will illustrate how to deploy Netbird into a homelab or business environment.
!!! note "Assumptions" !!! note "Assumptions"
It is assumed that you are running Ubuntu Server Minimized. You can technically use anything, but the command syntax will be different depending on the platform, and this document will not outline every possible operating system. It is assumed that you are running Rocky Linux 10. You can technically use anything, but the command syntax will be different depending on the platform, and this document will not outline every possible operating system.
### Install Prerequisites ### Install Prerequisites
You need to install a few things before we can begin with the deployment of Netbird. Run the following commands set up the server environment before Netbird deployment. You need to install a few things before we can begin with the deployment of Netbird. Run the following commands set up the server environment before Netbird deployment.
@@ -12,7 +12,12 @@ You need to install a few things before we can begin with the deployment of Netb
```sh ```sh
# Install necessary packages # Install necessary packages
sudo apt install jq docker.io docker-compose curl sudo dnf check-update
sudo dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo dnf install -y docker-ce docker-ce-cli containerd.io
sudo systemctl start docker
sudo systemctl enable docker #
sudo yum install jq docker.io docker-compose curl
# Configure normal user to have docker privileges # Configure normal user to have docker privileges
sudo usermod -aG docker nicole sudo usermod -aG docker nicole