1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wireguard_ynh.git synced 2024-09-03 20:35:58 +02:00

Add ipv6 forwarding instructions in README

This commit is contained in:
tituspijean 2021-03-23 17:08:43 +01:00 committed by GitHub
parent 0e9d3fe412
commit ae3d03e0a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,8 +31,9 @@ WireGuard can be configured via a non-official web UI. Avoid altering the config
```bash ```bash
sudo nano /etc/sysctl.conf sudo nano /etc/sysctl.conf
# It should have an uncommented line: # Uncomment the following lines:
net.ipv4.ip_forward = 1 net.ipv4.ip_forward = 1
net.ipv6.conf.all.forwarding = 1
# Save and quit (CTRL+O, CTRL+X) # Save and quit (CTRL+O, CTRL+X)
sudo sysctl -p sudo sysctl -p
``` ```