mirror of
https://github.com/fosrl/docs-v2.git
synced 2026-02-17 18:36:41 +00:00
Add 21820 ports in
This commit is contained in:
@@ -100,7 +100,8 @@ gerbil:
|
|||||||
ports:
|
ports:
|
||||||
- "80:80" # HTTP/SSL verification and non-SSL resources
|
- "80:80" # HTTP/SSL verification and non-SSL resources
|
||||||
- "443:443" # HTTPS for web UI and SSL resources
|
- "443:443" # HTTPS for web UI and SSL resources
|
||||||
- "51820:51820" # WireGuard for Newt and client connections
|
- "51820:51820" # WireGuard for Newt connections
|
||||||
|
- "21820:21820" # WireGuard for client connections
|
||||||
```
|
```
|
||||||
|
|
||||||
### Firewall Configuration
|
### Firewall Configuration
|
||||||
@@ -112,7 +113,7 @@ Ensure your VPS firewall allows these ports:
|
|||||||
Configure security groups/firewall rules in your cloud provider's dashboard to allow:
|
Configure security groups/firewall rules in your cloud provider's dashboard to allow:
|
||||||
|
|
||||||
- TCP ports 80 and 443
|
- TCP ports 80 and 443
|
||||||
- UDP port 51820
|
- UDP ports 51820 and 21820
|
||||||
</Tab>
|
</Tab>
|
||||||
|
|
||||||
<Tab title="UFW (Ubuntu)">
|
<Tab title="UFW (Ubuntu)">
|
||||||
@@ -120,6 +121,7 @@ Ensure your VPS firewall allows these ports:
|
|||||||
sudo ufw allow 80/tcp
|
sudo ufw allow 80/tcp
|
||||||
sudo ufw allow 443/tcp
|
sudo ufw allow 443/tcp
|
||||||
sudo ufw allow 51820/udp
|
sudo ufw allow 51820/udp
|
||||||
|
sudo ufw allow 21820/udp
|
||||||
sudo ufw enable
|
sudo ufw enable
|
||||||
```
|
```
|
||||||
</Tab>
|
</Tab>
|
||||||
@@ -129,6 +131,7 @@ Ensure your VPS firewall allows these ports:
|
|||||||
sudo firewall-cmd --permanent --add-port=80/tcp
|
sudo firewall-cmd --permanent --add-port=80/tcp
|
||||||
sudo firewall-cmd --permanent --add-port=443/tcp
|
sudo firewall-cmd --permanent --add-port=443/tcp
|
||||||
sudo firewall-cmd --permanent --add-port=51820/udp
|
sudo firewall-cmd --permanent --add-port=51820/udp
|
||||||
|
sudo firewall-cmd --permanent --add-port=21820/udp
|
||||||
sudo firewall-cmd --reload
|
sudo firewall-cmd --reload
|
||||||
```
|
```
|
||||||
</Tab>
|
</Tab>
|
||||||
|
|||||||
@@ -169,6 +169,7 @@ services:
|
|||||||
- SYS_MODULE
|
- SYS_MODULE
|
||||||
ports:
|
ports:
|
||||||
- 51820:51820/udp
|
- 51820:51820/udp
|
||||||
|
- 21820:21820/udp
|
||||||
- 443:443 # Port for traefik because of the network_mode
|
- 443:443 # Port for traefik because of the network_mode
|
||||||
- 80:80 # Port for traefik because of the network_mode
|
- 80:80 # Port for traefik because of the network_mode
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ Before you begin, ensure you have:
|
|||||||
- **Linux server** with root access and public IP address
|
- **Linux server** with root access and public IP address
|
||||||
- **Domain name** pointing to your server's IP address for the dashboard
|
- **Domain name** pointing to your server's IP address for the dashboard
|
||||||
- **Email address** for Let's Encrypt SSL certificates and admin log in
|
- **Email address** for Let's Encrypt SSL certificates and admin log in
|
||||||
- **Open ports on firewall** for 80 (TCP), 443 (TCP), and 51820 (UDP)
|
- **Open ports on firewall** for 80 (TCP), 443 (TCP), 51820 (UDP), and 21820 (UDP for clients)
|
||||||
|
|
||||||
<Tip>
|
<Tip>
|
||||||
**Recommended**: Ubuntu 20.04+ or Debian 11+ for best compatibility and performance.
|
**Recommended**: Ubuntu 20.04+ or Debian 11+ for best compatibility and performance.
|
||||||
|
|||||||
Reference in New Issue
Block a user