diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index 312b919..3ea978a 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -5,6 +5,8 @@ * Use YunoHost permissions panel to allow users to access the web UI. * Only one network interface, *wg0*, can be managed with this app at the moment. +After installation, you need to `Apply Config` once in the UI before the VPN service can be started. + ### Make your server share its Internet connection #### Enable port forwarding @@ -18,15 +20,3 @@ net.ipv6.conf.all.forwarding = 1 sudo sysctl -p ``` -Add the following commands in `WireGuard Server` menu, like in [this picture](https://user-images.githubusercontent.com/8769166/124400150-cf354980-dd20-11eb-87c6-9478938d9c82.png). Replace `eth0` with the interface connected to the Internet: - -#### Post Up Script -``` -iptables -A FORWARD -i %i -j ACCEPT; iptables -A FORWARD -o %i -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE -``` - -#### Post Down Script -``` -iptables -D FORWARD -i %i -j ACCEPT; iptables -D FORWARD -o %i -j ACCEPT; iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE -``` - diff --git a/doc/DISCLAIMER_fr.md b/doc/DISCLAIMER_fr.md index 11b0e5b..b6d5bf9 100644 --- a/doc/DISCLAIMER_fr.md +++ b/doc/DISCLAIMER_fr.md @@ -5,6 +5,8 @@ * Utiliser le panneau de permissions de YunoHost pour autoriser des utilisateurs à accéder à WireGuard UI. * Une seule interface réseau, *wg0*, peut actuellement être gérée par cette app. +Après installation, vous devrez cliquer sur `Apply Config` une fois dans l'UI avant que le service VPN puisse être démarré. + ### Partagez votre connexion Internet via WireGuard #### Activez le *port forwarding* @@ -18,15 +20,3 @@ net.ipv6.conf.all.forwarding = 1 sudo sysctl -p ``` -Ajoutez les commandes suivantes dans le menu `WireGuard Server`, tel que dans [cette image](https://user-images.githubusercontent.com/8769166/124400150-cf354980-dd20-11eb-87c6-9478938d9c82.png). Remplacez `eth0` avec l'interface connectée à Internet : - -#### Post Up Script -``` -iptables -A FORWARD -i %i -j ACCEPT; iptables -A FORWARD -o %i -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE -``` - -#### Post Down Script -``` -iptables -D FORWARD -i %i -j ACCEPT; iptables -D FORWARD -o %i -j ACCEPT; iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE -``` -