Add Servers/Networking/VPN/Netbird.md
All checks were successful
GitOps Automatic Deployment / GitOps Automatic Deployment (push) Successful in 8s
All checks were successful
GitOps Automatic Deployment / GitOps Automatic Deployment (push) Successful in 8s
This commit is contained in:
21
Servers/Networking/VPN/Netbird.md
Normal file
21
Servers/Networking/VPN/Netbird.md
Normal file
@@ -0,0 +1,21 @@
|
||||
## Purpose
|
||||
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"
|
||||
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.
|
||||
|
||||
### 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.
|
||||
|
||||
```sh
|
||||
# Install necessary packages
|
||||
sudo apt install jq docker.io docker-compose curl
|
||||
|
||||
# Configure normal user to have docker privileges.
|
||||
sudo usermod -aG docker nicole
|
||||
|
||||
# Logout and log back in via SSH
|
||||
exit
|
||||
ssh nicole@192.168.3.65
|
||||
|
||||
```
|
Reference in New Issue
Block a user