Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions install/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ git clone https://github.com/WGDashboard/WGDashboard.git && \
cd ./WGDashboard/src && \
chmod +x ./wgd.sh && \
./wgd.sh install && \
sudo echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf && \
sudo sh -c 'echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf' && \
sudo sysctl -p /etc/sysctl.conf
```

Expand All @@ -53,7 +53,7 @@ git clone https://github.com/WGDashboard/WGDashboard.git && \
cd ./WGDashboard/src && \
chmod +x ./wgd.sh && \
./wgd.sh install && \
sudo echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf && \
sudo sh -c 'echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf' && \
sudo sysctl -p /etc/sysctl.conf
```

Expand All @@ -67,7 +67,7 @@ git clone https://github.com/WGDashboard/WGDashboard.git && \
cd ./WGDashboard/src && \
chmod +x ./wgd.sh && \
./wgd.sh install && \
sudo echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf && \
sudo sh -c 'echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf' && \
sudo sysctl -p /etc/sysctl.conf
```

Expand All @@ -79,7 +79,7 @@ git clone https://github.com/WGDashboard/WGDashboard.git && \
cd ./WGDashboard/src && \
chmod +x ./wgd.sh && \
./wgd.sh install && \
sudo echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf && \
sudo sh -c 'echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf' && \
sudo sysctl -p /etc/sysctl.conf && \
firewall-cmd --add-port=10086/tcp --permanent && \
firewall-cmd --add-port=51820/udp --permanent && \
Expand All @@ -94,7 +94,7 @@ git clone https://github.com/WGDashboard/WGDashboard.git && \
cd ./WGDashboard/src && \
chmod +x ./wgd.sh && \
./wgd.sh install && \
sudo echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf && \
sudo sh -c 'echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf' && \
sudo sysctl -p /etc/sysctl.conf && \
firewall-cmd --add-port=10086/tcp --permanent && \
firewall-cmd --add-port=51820/udp --permanent && \
Expand All @@ -109,7 +109,7 @@ git clone https://github.com/WGDashboard/WGDashboard.git && \
cd ./WGDashboard/src && \
chmod +x ./wgd.sh && \
./wgd.sh install && \
sudo echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf && \
sudo sh -c 'echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf' && \
sudo sysctl -p /etc/sysctl.conf && \
firewall-cmd --add-port=10086/tcp --permanent && \
firewall-cmd --add-port=51820/udp --permanent && \
Expand All @@ -124,7 +124,7 @@ git clone https://github.com/WGDashboard/WGDashboard.git && \
cd ./WGDashboard/src && \
chmod +x ./wgd.sh && \
./wgd.sh install && \
sudo echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf && \
sudo sh -c 'echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf' && \
sudo sysctl -p /etc/sysctl.conf
```

Expand All @@ -149,7 +149,7 @@ git clone https://github.com/WGDashboard/WGDashboard.git && \
cd ./WGDashboard/src && \
chmod +x ./wgd.sh && \
./wgd.sh install && \
sudo echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf && \
sudo sh -c 'echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf' && \
sudo sysctl -p /etc/sysctl.conf && \
firewall-cmd --add-port=10086/tcp --permanent && \
firewall-cmd --add-port=51820/udp --permanent && \
Expand All @@ -166,7 +166,7 @@ git clone https://github.com/WGDashboard/WGDashboard.git && \
cd ./WGDashboard/src && \
chmod +x ./wgd.sh && \
./wgd.sh install && \
sudo echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf && \
sudo sh -c 'echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf' && \
sudo sysctl -p /etc/sysctl.conf
```
> Tested by our community member. Thank you!
Expand Down Expand Up @@ -215,7 +215,7 @@ Please visit this [community script](https://community-scripts.github.io/Proxmox

7. Allow traffic forwarding (Optional, but recommend for most users)
```shell
sudo echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf
sudo sh -c 'echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf'
sudo sysctl -p /etc/sysctl.conf
```

Expand Down