You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.1 KiB
HTML
64 lines
2.1 KiB
HTML
{% extends 'pages/_install_base.html' %}
|
|
{% load i18n %}
|
|
{% load dltags %}
|
|
|
|
{% block pagetitle %}
|
|
{% trans "Install on Other Platforms" %}
|
|
{% endblock %}
|
|
|
|
{% block openvpn_setup %}
|
|
{% blocktrans trimmed %}
|
|
Some devices will let you upload and import a VPN configuration; the "Other / GNU/Linux" configuration option is made to be compatible.
|
|
For most other devices and client applications, including most routers supporting OpenVPN, you will need to fill in a few parameters as described below:
|
|
{% endblocktrans %}
|
|
|
|
<table class="flat-table">
|
|
<thead><tr><td>{% trans "Option" %}</td><td>{% trans "Value" %}</td></tr></thead>
|
|
<tr>
|
|
<td>{% trans "CA certificate" %}</td>
|
|
<td>{% trans "Download the following file:" %} <a href="https://vpn.ccrypto.org/ca.crt">vpn.ccrypto.org/ca.crt</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{% trans "Client / Server certificates" %}</td>
|
|
<td>{% trans "None" %}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{% trans "User name and Password" %}</td>
|
|
<td>{% trans "The same as on this site." %}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{% trans "Host or Gateway" %}</td>
|
|
<td>
|
|
{% blocktrans trimmed with url="/status" gw="gw.random.204vpn.net" %}
|
|
Pick one in the <a href="{{url}}">server list</a>,
|
|
or <code>{{gw}}</code> for a random server.
|
|
{% endblocktrans %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{% trans "Port / Protocol" %}</td>
|
|
<td>{% trans "1196 in UDP mode (or 443 in TCP mode; prefer UDP unless blocked)" %}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{% trans "Interface Type" %}</td>
|
|
<td><code>tun</code></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{% trans "LZO Compression" %}</td>
|
|
<td>{% trans "Enabled" %}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{% trans "Cipher / HMAC" %}</td>
|
|
<td>
|
|
{% blocktrans trimmed %}
|
|
<code>BF-CBC</code> and <code>SHA1</code> by default, renegociable with a recent OpenVPN version
|
|
{% endblocktrans %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{% trans "DNS Server" %}</td>
|
|
<td><code>10.99.0.20</code></td>
|
|
</tr>
|
|
</table>
|
|
{% endblock %}
|