support update
parent
70e0fd7123
commit
15517ce32e
@ -0,0 +1,18 @@
|
||||
---
|
||||
Title: Install WireGuard
|
||||
---
|
||||
|
||||
1. Download and install the WireGuard software,
|
||||
with instructions for each device and operating systems on its official website:
|
||||
[*Installation - Wireguard*](https://www.wireguard.com/install/).
|
||||
|
||||
2. Create a new WireGuard key in [your account](/account/wireguard).
|
||||
You need one for each device that you want to associate with your account.
|
||||
|
||||
3. Import the configuration in WireGuard.
|
||||
|
||||
- On Android and iOS, open the app and scan the [QR code from your account](/account/wireguard)
|
||||
- On Windows, mac OS and Linux, import a configuration file [downloaded from your account](/account/wireguard).
|
||||
|
||||
4. Activate the newly imported configuration in WireGuard.
|
||||
You can check your IP address by refreshing this page (or opening it on the device) and looking at the bottom.
|
@ -0,0 +1,20 @@
|
||||
---
|
||||
Title: Installation de WireGuard
|
||||
---
|
||||
|
||||
1. Téléchargez et installez le logiciel WireGuard.
|
||||
Des instructions spécifique pour chaque plateforme supportée sont disponibles
|
||||
sur son site officiel:
|
||||
[*Installation - Wireguard*](https://www.wireguard.com/install/).
|
||||
|
||||
2. Créez une nouvelle clé WireGuard dans [votre compte](/account/wireguard).
|
||||
Vous aurez besoin d'une clé par appareil à associer à votre compte.
|
||||
|
||||
3. Importez la configuration dans WireGuard.
|
||||
|
||||
- Sur Android et iOS, ouvrez l'app et scannez le [code QR disponible dans votre compte](/account/wireguard)
|
||||
- Sur Windows, mac OS, et Linux, importez le fichier de configuration [à télécharger dans votre compte](/account/wireguard).
|
||||
|
||||
4. Activez la configuration dans WireGuard.
|
||||
Vous pouvez vérifier votre adresse IP en rafraichissant cette page (ou en l'ouvrant sur l'appareil à connecter)
|
||||
en bas à droite.
|
@ -1,91 +0,0 @@
|
||||
---
|
||||
Title: Self Diagnosis
|
||||
---
|
||||
|
||||
|
||||
### Windows
|
||||
|
||||
Before anything, make sure you have started OpenVPN as Administrator and that your
|
||||
config files exist in `C:\Program Files\OpenVPN\config\`.
|
||||
|
||||
#### netsh.exe error
|
||||
|
||||
If you find lines like those in your OpenVPN log:
|
||||
|
||||
NETSH: C:\Windows\system32\netsh.exe interface ipv6 set address Local Area Network
|
||||
ERROR: netsh command failed: returned error code 1
|
||||
|
||||
This error is really frequent on Windows and seem to happen because of
|
||||
a OpenVPN problem with netsh.exe and IPv6.
|
||||
To fix it, rename your network connection to avoid spaces,
|
||||
for example "Local Area Network" to "lan".
|
||||
|
||||
- [Rename a network connection](http://windows.microsoft.com/en-au/windows-vista/rename-a-network-connection)
|
||||
|
||||
|
||||
#### Multiple TAP-Windows adapters
|
||||
|
||||
Error: When using --tun-ipv6, if you have more than one TAP-Windows adapter, you must also specify --dev-node
|
||||
Exiting due to fatal error
|
||||
|
||||
That one can happen when you have multiple TAP-Windows adapters, most of the
|
||||
time because of another software using TAP.
|
||||
|
||||
To fix it, open a command prompt (Shift+Right click) in your OpenVPN directory
|
||||
(where openvpn.exe is), and run:
|
||||
|
||||
openvpn.exe --show-adapters
|
||||
|
||||
This will list your TAP adapters.
|
||||
Then, open your ccrypto.ovpn configuration file with notepad and add this on a
|
||||
new line:
|
||||
|
||||
dev-node [name]
|
||||
|
||||
Replace [name] by your TAP adapter name.
|
||||
|
||||
|
||||
#### Still doesn't work
|
||||
|
||||
If you still cannot use the VPN, please go to the [Support page](/page/help)
|
||||
and we'll do our best to help you.
|
||||
Please also send us your OpenVPN logs.
|
||||
|
||||
|
||||
### GNU/Linux
|
||||
|
||||
#### I have a ".ovpn" file but I need a ".conf"!
|
||||
You just have to change the extension by renamming the file.
|
||||
.conf is more commonly used on GNU/Linux, but it's the same as the .ovpn file.
|
||||
|
||||
|
||||
#### I'm unable to use your VPN with Network-Manager.
|
||||
First, check that you have properly created the profile (tutorial to come).
|
||||
If it's the case, before anything else, let's make sure that OpenVPN itself is working with the following command:
|
||||
`sudo openvpn --config ccrypto.conf`
|
||||
(make sure to replace "ccrypto.conf" by the actual name of your configuration file)
|
||||
|
||||
#### I'm connected but cannot ping google.com
|
||||
Try to `ping 8.8.8.8`: if it works then your computer doesn't use the right DNS server.
|
||||
Add `nameserver 10.99.0.20` at the beginning of /etc/resolv.conf **once the connection is made**.
|
||||
Else, continue reading.
|
||||
|
||||
|
||||
#### It still doesn't work!
|
||||
Using the `ip route` command, make sure you have, alongside with other lines, the following:
|
||||
|
||||
0.0.0.0/1 via 10.99.2.1 dev tun0
|
||||
10.99.0.0/24 via 10.99.2.1 dev tun0
|
||||
10.99.2.0/24 dev tun0 proto kernel scope link src 10.99.2.18
|
||||
128.0.0.0/1 via 10.99.2.1 dev tun0
|
||||
199.115.114.65 via 192.168.1.1 dev wlan0
|
||||
|
||||
These values might (and for some, will) change a little depending on your configuration (for example: wlan0 → eth0, 192.168.1.1 → 192.168.42.23, etc.).
|
||||
If you don't have every one of these lines, kill OpenVPN and fire it again or add the routes by hand using `ip route add`.
|
||||
If you don't know how to do it, it would be best to come ask on IRC (we will need the output of both `ip addr` and `ip route`,
|
||||
please paste them into https://paste.cubox.me and just give us the link to the paste).
|
||||
|
||||
|
||||
#### I've tried everything but nothing seems to work! T_T
|
||||
Ok… I guess now you can come [ask us on IRC](/chat) (but remember to stay a while, we're not payed professionnal, we might not be around at a given time but we will answer later on).
|
||||
|
@ -1,87 +0,0 @@
|
||||
---
|
||||
Title: Auto-Diagnostic
|
||||
---
|
||||
|
||||
|
||||
### Windows
|
||||
|
||||
Tout d'abord, assurez vous d'avoir bien démarré OpenVPN en tant qu'administrateur
|
||||
et que votre fichier de configuration est correctement placé dans
|
||||
`C:\Program Files\OpenVPN\config\`.
|
||||
|
||||
#### netsh.exe
|
||||
|
||||
Si vous trouvez ces lignes dans votre historique OpenVPN:
|
||||
|
||||
NETSH: C:\Windows\system32\netsh.exe interface ipv6 set address Connexion au réseau local
|
||||
ERROR: netsh command failed: returned error code 1
|
||||
|
||||
Cette erreur est fréquente sous windows et semble arriver à cause d'un problème
|
||||
d'OpenVPN avec netsh.exe et l'IPv6.
|
||||
Pour le résoudre, renommez votre connection réseau pour éviter les espaces.
|
||||
Par exemple « Connexion au réseau local » en « lan ».
|
||||
|
||||
- [(fr) Renommer une connexion réseau](http://windows.microsoft.com/fr-xf/windows-vista/rename-a-network-connection)
|
||||
|
||||
|
||||
#### Multiples interfaces TAP
|
||||
|
||||
Error: When using --tun-ipv6, if you have more than one TAP-Windows adapter, you must also specify --dev-node
|
||||
Exiting due to fatal error
|
||||
|
||||
Cette erreur pourra apparaitre si vous avec de multiples interfaces TAP,
|
||||
la plupart du temps à cause d'un autre logiciel utilisant TAP.
|
||||
Pour le résoudre, ouvrez un interpréteur de commandes (Shift + Clic droit)
|
||||
dans votre répertoire OpenVPN (là où openvpn.exe se situe) et lancez :
|
||||
|
||||
openvpn.exe --show-adapters
|
||||
|
||||
Cela va lister vos interfaces TAP.
|
||||
Puis, ouvrez votre fichier de configuration ccrypto.ovpn avec un éditeur de texte
|
||||
et ajoutez ceci sur une nouvelle ligne :
|
||||
|
||||
dev-node [nom]
|
||||
|
||||
Remplacez [nom] par le nom de votre interface TAP.
|
||||
|
||||
|
||||
#### Ça ne fonctionne toujours pas ?
|
||||
|
||||
Si vous ne pouvez toujours pas utiliser le VPN, n'hésitez pas à
|
||||
[nous contacter](/page/help).
|
||||
Joignez les logs d'OpenVPN à votre message, pour nous aider à trouver
|
||||
le problème au plus vite.
|
||||
|
||||
|
||||
### GNU/Linux
|
||||
|
||||
#### J'ai un fichier ".ovpn" mais il me faut un ".conf" !
|
||||
Il vous suffit de changer l'extension en renommant le fichier.
|
||||
|
||||
#### Il m'est impossible d'utiliser votre VPN avec Network-Manager.
|
||||
Tout d'abord, vérifiez que vous avez correctement créé le profil (tutoriel à venir).
|
||||
Si c'est bien le cas, avant toute chose, vérifiez qu'OpenVPN lui-même est opérationnel en utilisant cette commande :
|
||||
`sudo openvpn --config ccrypto.conf`
|
||||
(assurez-vous de remplacer "ccrypto.conf" par le nom de votre fichier de configuration)
|
||||
|
||||
#### Je suis connecté mais je ne peux pas ping google.com
|
||||
Essayez de `ping 8.8.8.8`, si ça marche, votre ordinateur n'utilise pas le serveur DNS. Ajoutez `nameserver 10.99.0.20` au début de /etc/resolv.con **une fois la connexion établie**. Sinon, lisez la suite.
|
||||
|
||||
#### Ça ne marche toujours pas !
|
||||
En utilisant la commande `ip route`, vérifiez que vous avez, entre autre choses, les lignes suivantes :
|
||||
|
||||
0.0.0.0/1 via 10.99.2.1 dev tun0
|
||||
10.99.0.0/24 via 10.99.2.1 dev tun0
|
||||
10.99.2.0/24 dev tun0 proto kernel scope link src 10.99.2.18
|
||||
128.0.0.0/1 via 10.99.2.1 dev tun0
|
||||
199.115.114.65 via 192.168.1.1 dev wlan0
|
||||
|
||||
Ces valeurs peuvent (et pour certaines, vont) changer suivant votre configuration (par exemple : wlan0 → eth0, 192.168.1.1 → 192.168.42.23, etc.)
|
||||
Si vous n'avez pas toutes ces lignes, relancez OpenVPN ou ajouter les routes à la main en utilisant `ip route add`.
|
||||
Si vous ne savez pas comment faire, ce serait mieux de venir nous demander sur IRC
|
||||
(nous allons avoir besoin des sorties des commandes `ip addr` et `ip route`,
|
||||
veuillez utiliser https://paste.cubox.me et nous envoyer uniquement le lien vers le paste).
|
||||
|
||||
#### J'ai tout essayé mais rien ne semble fonctionner ! T_T
|
||||
Ok… Je pense que vous pouvez venir [nous demander sur IRC](/chat) (mais souvenez-vous que nous ne sommes pas des professionnels payés, nous ne sommes pas toujours présent mais nous finirons toujours par répondre si vous ne partez pas trop vite).
|
||||
|
@ -1,62 +0,0 @@
|
||||
{% extends 'layout.html' %}
|
||||
{% load i18n %}
|
||||
{% load static %}
|
||||
|
||||
{% block content %}
|
||||
<div class="content">
|
||||
<h2>{% block pagetitle %}{{ title|default:"Support" }}{% endblock %}</h2>
|
||||
|
||||
<div class="flex-page">
|
||||
<div class="left-menu">
|
||||
<div class="submenu">
|
||||
<p class="menu-title">{% trans 'Tickets' %}</p>
|
||||
<ul>
|
||||
<li class="pure-menu-item">
|
||||
<a href="{% url 'tickets:new' %}">
|
||||
<i class="fa fa-plus-square fa-fw" aria-hidden="true"></i>
|
||||
{% trans 'New Ticket' %}
|
||||
</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a href="/tickets/open">
|
||||
<i class="fa fa-folder-open fa-fw" aria-hidden="true"></i>
|
||||
{% trans 'Open Tickets' %}
|
||||
{% if open_n > 0 %}({{open_n}}){% endif %}
|
||||
</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a href="/tickets/closed">
|
||||
<i class="fa fa-folder fa-fw" aria-hidden="true"></i>
|
||||
{% trans 'Closed Tickets' %}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="submenu">
|
||||
{% if perms.tickets.view_any_ticket %}
|
||||
<p class="menu-title">{% trans 'Staff' %}</p>
|
||||
<ul>
|
||||
<li class="pure-menu-item">
|
||||
<a href="/tickets/all_open">
|
||||
<i class="fa fa-fire-extinguisher fa-fw" aria-hidden="true"></i>
|
||||
{% trans 'All Open' %}
|
||||
{% if all_open_n > 0 %}({{all_open_n}}){% endif %}
|
||||
</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a href="/tickets/all_closed">
|
||||
<i class="fa fa-archive fa-fw" aria-hidden="true"></i>
|
||||
{% trans 'All Closed' %}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="content-box">
|
||||
{% block tickets_content %}{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
Loading…
Reference in New Issue