]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/static/features/dial-in.html
fireinfo: Some design fixes for ARM.
[people/shoehn/ipfire.org.git] / www / templates / static / features / dial-in.html
1 {% extends "../../base-feature.html" %}
2
3 {% block title %}{{ _("Dial-in") }}{% end block %}
4
5 {% block content %}
6 <h3>{{ _("Dial-in") }}</h3>
7
8 <!-- XXX needs icons -->
9 <!-- XXX needs screenshots -->
10
11 {% if lang == "de" %}
12 <p>
13 IPFire ist als Internet-Gateway in der Lage über verschiedene (Einwahl-)Techniken eine Verbindung zum
14 Internet aufzubauen.
15 </p>
16 <p>
17 Es werden alle gängigen Breitbandzugangsarten wie auch mobile Zugänge unterstützt:
18 </p>
19 <ul class="list">
20 <li>
21 <strong>VDSL:</strong> VDSL ist die Abkürzung für „Very High Data Rate Digital Subscriber Line“ und
22 bietet in Deutschland derzeit Bandbreiten bis zu 50 MBit/s im Downstream und 10 MBit/s im Upstream.
23 Damit eignet sich VDSL für die Zukunft und bringt auch IPTV mit sich. Mit IPFire kann der herkömmliche
24 Router ausgetauscht werden und auf ein vollwertiges System gesetzt werden, das den IPTV-Stream ins
25 eigene Netz bringt.
26 </li>
27 <li>
28 <strong>ADSL/SDSL:</strong> Selbstverständlich wird auch herkömmliches DSL unterstützt, wobei es sich
29 technisch um PPPoE oder PPPoA handelt. In einigen Ländern ist auch PPTP als Protokoll verbreitet und
30 wird ebenso unterstützt.
31 </li>
32 <li>
33 <strong>Ethernet:</strong> Über Ethernet kann IPFire ebenfalls mit dem Internet verbunden werden und
34 eine IP-Adresse entweder per DHCP beziehen oder statisch konfiguriert werden. Das wird u.a. bei
35 Verbindungen über Kabel genutzt.
36 </li>
37 <li>
38 <strong>3. Generation:</strong> Über USB-Modems wird auch jede Art von mobilen Breitbandverbindungen
39 unterstützt welche bekannt sind unter den Bezeichnungen UMTS, 3G, CDMA, HSDPA oder LTE.
40 </li>
41 </ul>
42
43 <br class="clear" />
44
45 <!-- XXX table needs formatting -->
46 <table class="dial-in">
47 <tr>
48 <th>Verbindungsart</th>
49 <th>geläufige Protokolle</th>
50 </tr>
51 <tr>
52 <td>ADSL/SDSL</td>
53 <td>PPPoE, PPPoA, PPTP (statisch oder per DHCP)</td>
54 </tr>
55 <tr>
56 <td>VDSL</td>
57 <td>PPPoE inkl. DHCP für IPTV mit Multicast-Routing/-Streaming</td>
58 </tr>
59 <tr>
60 <td>Kabel</td>
61 <td>Ethernet mit DHCP oder statischer Einstellung</td>
62 </tr>
63 <tr>
64 <td>UMTS/HSDPA/3G/CDMA</td>
65 <td>PPP</td>
66 </tr>
67 <tr>
68 <td>Analoges Modem</td>
69 <td>PPP</td>
70 </tr>
71 </table>
72 {% else %}
73 <p>
74 IPFire as an Internet-Gateway are able to dial-up through various techniques to connect to the Internet.
75 </p>
76 <p>
77 It supports all popular types of broadband access as well as mobile access:
78 </p>
79 <ul class="list">
80 <li>
81 <strong>VDSL:</strong> VDSL is the shortcut for “Very High Data Rate Digital Subscriber Line” and
82 it currently offers bandwidths in Germany up to 50 Mbit/s downstream and 10 Mbit/s upstream. Thus,
83 VDSL brings therefor the possibility to use technologies like IPTV. With IPFire, a conventional
84 router can be replaced by a full-fledged system that brings the IPTV stream into the own home net.
85 </li>
86 <li>
87 <strong>ADSL/SDSL:</strong> Of course, conventional DSL is supported, although it is technically
88 called also PPPoE or PPPoA. In some countries, the PPTP protocol is also widely used and it is also
89 supported by IPFire.
90 </li>
91 <li>
92 <strong>Ethernet:</strong> Over Ethernet IPFire can also be connected to the Internet and obtain
93 an IP address either via DHCP or statically configured.
94 </li>
95 <li>
96 <strong>3. Generation:</strong> Mobile broadband connections which are also known under the names
97 UMTS, 3G, CDMA, HSDPA or LTE over USB modems are also supported by IPFire.
98 </li>
99 </ul>
100
101 <br class="clear" />
102
103 <!-- XXX table needs formatting -->
104 <table class="dial-in">
105 <tr>
106 <th>Connection types</th>
107 <th>common protocols</th>
108 </tr>
109 <tr>
110 <td>ADSL/SDSL</td>
111 <td>PPPoE, PPPoA, PPTP (static or over DHCP)</td>
112 </tr>
113 <tr>
114 <td>VDSL</td>
115 <td>PPPoE inkl. DHCP for IPTV with Multicast-Routing/-Streaming</td>
116 </tr>
117 <tr>
118 <td>Cable</td>
119 <td>Ethernet with DHCP or static preferences</td>
120 </tr>
121 <tr>
122 <td>UMTS/HSDPA/3G/CDMA</td>
123 <td>PPP</td>
124 </tr>
125 <tr>
126 <td>Analog modem</td>
127 <td>PPP</td>
128 </tr>
129 </table>
130 {% end %}
131 {% end block %}