]> git.ipfire.org Git - ipfire.org.git/blob - templates/static/features/vpn.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / templates / static / features / vpn.html
1 {% extends "../../base-feature.html" %}
2
3 {% block title %}{{ _("VPN") }}{% end block %}
4
5 {% block bodyA %}
6 <img src="{{ static_url("images/icons/vpn.png") }}" class="pull-right" alt="{{ _("VPN") }}" />
7 <div class="page-header">
8 <h1>
9 {{ _("VPN") }}
10 <small>{{ _("Virtual Private Networks") }}</small>
11 </h1>
12 </div>
13
14 <div class="row">
15 <div class="span9">
16 {% if lang == "de" %}
17 <p>
18 IPFire kann zu einem VPN-Gateway (virtal private network - virtuelles, privates Netzwerk)
19 ausgebaut werden, welches Personen mit unterschiedlichem Standort untereinander verbindet.
20 Dies können zum Beispiel Mitarbeiter, Freunde oder Personen sein mit denen man Daten sicher
21 austauschen möchte, aber auch eine Filiale, Außenstelle, wichtige Kunden oder andere Unternehmen
22 mit denen kommuniziert wird.
23 </p>
24 <p>
25 Um sich über verschiedene Technologien verbinden zu können unterstützt IPFire die VPN Protokolle
26 IPsec und OpenVPN. Dies erlaubt dem Administrator große Freiheiten bei der Konfiguration des VPNs.
27 Die Verwendung dieser Protokolle erlaubt es IPFire auch sich mit VPN Endpunkten verschiedenster
28 Hardwarehersteller, wie Cisco, Juniper, Checkpoint, etc. zu verbinden.
29 </p>
30 {% else %}
31 <p>
32 IPFire also includes functionality to create virtual private networks (VPN).
33 A VPN is a gateway which connects remote networks to the local one using an
34 encrypted link.
35 Uses for a VPN include business connections to branch offices or datacenters,
36 as well as providing traveling staff with a secure portal to the corporate network.
37 </p>
38 <p>
39 For maximum flexibility, IPFire uses both IPsec and OpenVPN protocols,
40 giving administrators maximum flexibility when configuring their VPN.
41 Use of these protocols allows IPFire to connect to a variety of VPN endpoint
42 devices by manufacturers such as Cisco, Juniper, Checkpoint, etc.
43 </p>
44 {% end %}
45 </div>
46 </div>
47
48 <p class="links">
49 <!-- XXX a link to the wiki goes here -->
50 <a href="http://wiki.ipfire.org">{{ _("Learn more about configuring a VPN connection") }}</a>
51 </p>
52 {% end block %}