]> git.ipfire.org Git - ipfire.org.git/blob - templates/static/features/dialup.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / templates / static / features / dialup.html
1 {% extends "../../base-feature.html" %}
2
3 {% block title %}{{ _("Dialup") }}{% end block %}
4
5 {% block bodyA %}
6 <div class="page-header">
7 <h1>{{ _("Dialup") }}</h1>
8 </div>
9
10 <div class="row">
11 <div class="span9">
12 {% if lang == "de" %}
13 <p>
14 IPFire ist als Internet-Gateway in der Lage über verschiedene
15 (Einwahl-)Techniken eine Verbindung zum Internet aufzubauen.
16 </p>
17 <p>
18 Es werden alle gängigen Breitbandzugangsarten wie auch mobile Zugänge unterstützt:
19 </p>
20
21 <table class="table table-striped table-bordered">
22 <tbody>
23 <tr>
24 <td>
25 <strong>VDSL</strong>
26 </td>
27 <td>
28 VDSL ist die Abkürzung für <em>Very High Data Rate Digital Subscriber Line</em> und
29 bietet in Deutschland derzeit Bandbreiten bis zu 50 MBit/s im Downstream und 10 MBit/s im Upstream.
30 Damit eignet sich VDSL für die Zukunft und bringt auch IPTV mit sich. Mit IPFire kann der herkömmliche
31 Router ausgetauscht werden und auf ein vollwertiges System gesetzt werden, das den IPTV-Stream ins
32 eigene Netz bringt.
33 </td>
34 </tr>
35 <tr>
36 <td>
37 <strong>ADSL/SDSL</strong>
38 </td>
39 <td>
40 Selbstverständlich wird auch herkömmliches DSL unterstützt, wobei es sich
41 technisch um PPPoE oder PPPoA handelt. In einigen Ländern ist auch PPTP als Protokoll verbreitet und
42 wird ebenso unterstützt.
43 </td>
44 </tr>
45 <tr>
46 <td>
47 <strong>Ethernet</strong>
48 </td>
49 <td>
50 Über Ethernet kann IPFire ebenfalls mit dem Internet verbunden werden und
51 eine IP-Adresse entweder per DHCP beziehen oder statisch konfiguriert werden. Das wird u.a. bei
52 Verbindungen über Kabel genutzt.
53 </td>
54 </tr>
55 <tr>
56 <td>
57 <strong>3. Generation</strong>
58 </td>
59 <td>
60 Über USB-Modems wird auch jede Art von mobilen Breitbandverbindungen
61 unterstützt, welche bekannt sind unter den Bezeichnungen UMTS, 3G, CDMA, HSDPA oder LTE.
62 </td>
63 </tr>
64 </tbody>
65 </table>
66 {% else %}
67 <p>
68 IPFire as an Internet Gateway is able to dialup through various techniques
69 to connect to the Internet.
70 </p>
71 <p>
72 It supports all popular types of broadband access, as well as mobile access:
73 </p>
74
75 <table class="table table-striped table-bordered">
76 <tbody>
77 <tr>
78 <td>
79 <strong>VDSL</strong>
80 </td>
81 <td>
82 VDSL is short for <em>Very High Data Rate Digital Subscriber Line</em> and
83 it currently offers bandwidth up to 50 Mbit/s downstream and 10 Mbit/s upstream.
84 VDSL brings the possibility of using new technologies such as IPTV. With IPFire, a conventional
85 router can be replaced by a full-fledged system that brings the IPTV stream into your own home network.
86 </td>
87 </tr>
88 <tr>
89 <td>
90 <strong>ADSL/SDSL</strong>
91 </td>
92 <td>
93 Conventional DSL is also supported, although it is technically
94 called also PPPoE or PPPoA. In some countries, the PPTP protocol is also widely used and it is also fully
95 supported by IPFire.
96 </td>
97 </tr>
98 <tr>
99 <td>
100 <strong>Ethernet</strong>
101 </td>
102 <td>
103 Over Ethernet, IPFire can also be connected to the Internet and obtain
104 an IP address either via DHCP or static configuration.
105 </td>
106 </tr>
107 <tr>
108 <td>
109 <strong>3rd Generation</strong>
110 </td>
111 <td>
112 Mobile broadband connections over USB modems, which are also known by the names
113 UMTS, 3G, CDMA, HSDPA or LTE are also supported by IPFire.
114 </td>
115 </tr>
116 </tbody>
117 </table>
118 {% end %}
119 </div>
120 </div>
121 {% end block %}