public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo commit in xml/htdocs/doc/de/handbook: hb-net-modules.xml
@ 2008-03-14 20:07 Jan Hendrik Grahl (grahl)
  0 siblings, 0 replies; 5+ messages in thread
From: Jan Hendrik Grahl (grahl) @ 2008-03-14 20:07 UTC (permalink / raw
  To: gentoo-commits

grahl       08/03/14 20:07:46

  Modified:             hb-net-modules.xml
  Log:
  shitty errors, thanks to Daniel Herzog for reporting, #175224

Revision  Changes    Path
1.14                 xml/htdocs/doc/de/handbook/hb-net-modules.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?r1=1.13&r2=1.14

Index: hb-net-modules.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- hb-net-modules.xml	15 Feb 2008 04:04:28 -0000	1.13
+++ hb-net-modules.xml	14 Mar 2008 20:07:46 -0000	1.14
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v 1.13 2008/02/15 04:04:28 grahl Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v 1.14 2008/03/14 20:07:46 grahl Exp $ -->
 
 <!-- English CVS Version: 1.24 -->
 
@@ -23,9 +23,10 @@
 <body>
 
 <p>
-Wir unterstützen nun auch modulare Netzwerk-Skripte, sodass wir Unterstützung
-für neue Schnittstellen-Typen und Konfigurations-Module hinzugefügt werden
-kann, während die Kompatibilität mit bereits vorhandenen erhalten bleibt.
+Wir unterstützen nun auch modulare Netzwerk-Skripte, sodass wir leicht
+Unterstützung für neue Schnittstellen-Typen und Konfigurations-Module
+hinzugefügen können, während die Kompatibilität mit bereits vorhandenen erhalten
+bleibt.
 </p>
 
 <p>
@@ -78,8 +79,7 @@
 <pre caption="Installation von iproute2">
 # <i>emerge sys-apps/iproute2</i>
 
-<comment># Um iproute2 vor ifconfig den Vorzug zu geben, falls beide installiert
-sind</comment>
+<comment># Um iproute2 vor ifconfig den Vorzug zu geben, falls beide installiert sind</comment>
 modules=( "iproute2" )
 </pre>
 
@@ -213,7 +213,7 @@
 
 <note>
 <c>dhcpcd</c>, <c>udhcpc</c> und <c>pump</c> senden im Normalfall den aktuellen
-Hostnamen zum DHCP-Server, so dass Sie ihn nicht mehr angeben müssen.
+Hostnamen zum DHCP-Server, sodass Sie ihn nicht mehr angeben müssen.
 </note>
 
 </body>
@@ -325,8 +325,7 @@
 </p>
 
 <pre caption="APIPA-Konfiguration in /etc/conf.d/net">
-<comment># Versuchen Sie zuerst DHCP - schlägt das fehl, greifen Sie auf APIPA
-zurück</comment>
+<comment># Versuchen Sie zuerst DHCP - schlägt das fehl, greifen Sie auf APIPA zurück</comment>
 config_eth0=( "dhcp" )
 fallback_eth0=( "apipa" )
 
@@ -355,12 +354,10 @@
 <comment># Um Schnittstellen zu verbinden</comment>
 slaves_bond0="eth0 eth1 eth2"
 
-<comment># Weisen Sie einer verbundenen Schnittstelle keine IP-Adresse
-zu</comment>
+<comment># Weisen Sie einer verbundenen Schnittstelle keine IP-Adresse zu</comment>
 config_bond0=( "null" )
 
-<comment># Von eth0, eth1 and eth2 abhängen, da sie möglicherweise weitere
-Konfiguration benötigen</comment>
+<comment># Von eth0, eth1 and eth2 abhängen, da sie möglicherweise weitere Konfiguration benötigen</comment>
 depend_bond0() {
   need net.eth0 net.eth1 net.eth2
 }
@@ -385,24 +382,20 @@
 </p>
 
 <pre caption="Bridge-Konfiguration in /etc/conf.d/net">
-<comment># Konfigurieren Sie die Bridge - weitere Details liefert "man
-brctl"</comment>
+<comment># Konfigurieren Sie die Bridge - weitere Details liefert "man brctl"</comment>
 brctl_br0=( "setfd 0" "sethello 0" "stp off" )
 
 <comment># Um Ports zur Bridge br0 hinzuzufügen</comment>
 bridge_br0="eth0 eth1"
 
-<comment># Die Ports müssen mit Null-Werten konfiguriert werden, damit DHCP nicht
-gestartet wird.</comment>
+<comment># Die Ports müssen mit Null-Werten konfiguriert werden, damit DHCP nicht gestartet wird.</comment>
 config_eth0=( "null" )
 config_eth1=( "null" )
 
-<comment># Letztendlich weisen Sie der Bridge eine Adresse zu - Sie könnten dazu
-auch DHCP verwenden</comment>
+<comment># Letztendlich weisen Sie der Bridge eine Adresse zu - Sie könnten dazu auch DHCP verwenden</comment>
 config_br0=( "192.168.0.1/24" )
 
-<comment># Von eth0, eth1 and eth2 abhängen, da sie möglicherweise weitere
-Konfiguration benötigen</comment>
+<comment># Von eth0, eth1 and eth2 abhängen, da sie möglicherweise weitere Konfiguration benötigen</comment>
 depend_br0() {
   need net.eth0 net.eth1
 }
@@ -444,7 +437,7 @@
 mac_eth0="random-anykind"
 
 <comment># komplett willkürliche Auswahl - VORSICHT: manche auf diese Weise
-generierte MAC-Adressen verhalten sich nicht wie erwartet.</comment>
+# generierte MAC-Adressen verhalten sich nicht wie erwartet.</comment>
 mac_eth0="random-full"
 </pre>
 



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/de/handbook: hb-net-modules.xml
@ 2008-03-16 20:47 Jan Hendrik Grahl (grahl)
  0 siblings, 0 replies; 5+ messages in thread
From: Jan Hendrik Grahl (grahl) @ 2008-03-16 20:47 UTC (permalink / raw
  To: gentoo-commits

grahl       08/03/16 20:47:34

  Modified:             hb-net-modules.xml
  Log:
  i can't read

Revision  Changes    Path
1.15                 xml/htdocs/doc/de/handbook/hb-net-modules.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?r1=1.14&r2=1.15

Index: hb-net-modules.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- hb-net-modules.xml	14 Mar 2008 20:07:46 -0000	1.14
+++ hb-net-modules.xml	16 Mar 2008 20:47:34 -0000	1.15
@@ -4,7 +4,7 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v 1.14 2008/03/14 20:07:46 grahl Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v 1.15 2008/03/16 20:47:34 grahl Exp $ -->
 
 <!-- English CVS Version: 1.24 -->
 
@@ -25,7 +25,7 @@
 <p>
 Wir unterstützen nun auch modulare Netzwerk-Skripte, sodass wir leicht
 Unterstützung für neue Schnittstellen-Typen und Konfigurations-Module
-hinzugefügen können, während die Kompatibilität mit bereits vorhandenen erhalten
+hinzufügen können, während die Kompatibilität mit bereits vorhandenen erhalten
 bleibt.
 </p>
 



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/de/handbook: hb-net-modules.xml
@ 2009-02-13  5:32 Michael MAnch (micm)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael MAnch (micm) @ 2009-02-13  5:32 UTC (permalink / raw
  To: gentoo-commits

micm        09/02/13 05:32:30

  Modified:             hb-net-modules.xml
  Log:
  Sync to 1.25

Revision  Changes    Path
1.16                 xml/htdocs/doc/de/handbook/hb-net-modules.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?r1=1.15&r2=1.16

Index: hb-net-modules.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- hb-net-modules.xml	16 Mar 2008 20:47:34 -0000	1.15
+++ hb-net-modules.xml	13 Feb 2009 05:32:30 -0000	1.16
@@ -4,9 +4,9 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v 1.15 2008/03/16 20:47:34 grahl Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v 1.16 2009/02/13 05:32:30 micm Exp $ -->
 
-<!-- English CVS Version: 1.24 -->
+<!-- English CVS Version: 1.25 -->
 
 <sections>
 
@@ -15,8 +15,8 @@
 einen DHCP-Client auswählen, Bonding, VLANS und mehr einrichten.
 </abstract>
 
-<version>8.3</version>
-<date>2007-11-02</date>
+<version>8.4</version>
+<date>2009-02-12</date>
 
 <section>
 <title>Netzwerkmodule</title>
@@ -48,8 +48,8 @@
 modules=( "iproute2" )
 
 <comment># Sie können auch andere Module als Schnittstelle angeben
-# Im folgenden Fall bevorzugen wir udhcpc vor dhcpcd</comment>
-modules_eth0=( "udhcpc" )
+# Im folgenden Fall bevorzugen wir pump vor dhcpcd</comment>
+modules_eth0=( "pump" )
 
 <comment># Sie können auch angeben, welche Module nicht verwendet werden sollen
 #- beispielsweise könnten Sie supplicant oder linux-wlan-ng verwenden um
@@ -115,9 +115,9 @@
 </p>
 
 <p>
-DHCP kann durch <c>dhclient</c>, <c>dhcpcd</c>, <c>pump</c> oder <c>udhcpc</c>
-zur Verfügung gestellt werden. Jedes DHCP-Modul hat seine Vor- und Nachteile -
-hier ein kurzer Überblick.
+DHCP kann durch <c>dhclient</c>, <c>dhcpcd</c> oder <c>pump</c> zur Verfügung
+gestellt werden. Jedes DHCP-Modul hat seine Vor- und Nachteile - hier ein kurzer
+Überblick.
 </p>
 
 <table>
@@ -163,18 +163,6 @@
     keine NIS-Server über DHCP erhalten.
   </ti>
 </tr>
-<tr>
-  <ti><c>udhcpc</c></ti>
-  <ti><c>net-misc/udhcp</c></ti>
-  <ti>
-    Leichtgewicht, kleinster verfügbarer DHCP-Client, für Embedded Systems
-    gebaut.
-  </ti>
-  <ti>
-    Ungeprüft - keine Distro verwendet ihn standardmäßig, kann keine Timeouts
-    über 3 Sekunden definieren
-  </ti>
-</tr>
 </table>
 
 <p>
@@ -212,8 +200,8 @@
 </pre>
 
 <note>
-<c>dhcpcd</c>, <c>udhcpc</c> und <c>pump</c> senden im Normalfall den aktuellen
-Hostnamen zum DHCP-Server, sodass Sie ihn nicht mehr angeben müssen.
+<c>dhcpcd</c> und <c>pump</c> senden im Normalfall den aktuellen Hostnamen zum
+DHCP-Server, sodass Sie ihn nicht mehr angeben müssen.
 </note>
 
 </body>






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/de/handbook: hb-net-modules.xml
@ 2011-09-10 22:19 Tobias Heinlein (keytoaster)
  0 siblings, 0 replies; 5+ messages in thread
From: Tobias Heinlein (keytoaster) @ 2011-09-10 22:19 UTC (permalink / raw
  To: gentoo-commits

keytoaster    11/09/10 22:19:17

  Modified:             hb-net-modules.xml
  Log:
  Sync to 1.26

Revision  Changes    Path
1.17                 xml/htdocs/doc/de/handbook/hb-net-modules.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?r1=1.16&r2=1.17

Index: hb-net-modules.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- hb-net-modules.xml	13 Feb 2009 05:32:30 -0000	1.16
+++ hb-net-modules.xml	10 Sep 2011 22:19:17 -0000	1.17
@@ -4,9 +4,9 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v 1.16 2009/02/13 05:32:30 micm Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v 1.17 2011/09/10 22:19:17 keytoaster Exp $ -->
 
-<!-- English CVS Version: 1.25 -->
+<!-- English CVS Version: 1.26 -->
 
 <sections>
 
@@ -15,8 +15,8 @@
 einen DHCP-Client auswählen, Bonding, VLANS und mehr einrichten.
 </abstract>
 
-<version>8.4</version>
-<date>2009-02-12</date>
+<version>9</version>
+<date>2011-08-13</date>
 
 <section>
 <title>Netzwerkmodule</title>
@@ -45,17 +45,17 @@
 
 <pre caption="Modul-Präferenz">
 <comment># Ziehe iproute2 dem Modul ifconfig vor</comment>
-modules=( "iproute2" )
+modules="iproute2"
 
 <comment># Sie können auch andere Module als Schnittstelle angeben
 # Im folgenden Fall bevorzugen wir pump vor dhcpcd</comment>
-modules_eth0=( "pump" )
+modules_eth0="pump"
 
 <comment># Sie können auch angeben, welche Module nicht verwendet werden sollen
 #- beispielsweise könnten Sie supplicant oder linux-wlan-ng verwenden um
 #die Drahtlos-Konfiguration zu steuern, möchten aber die Netzwerk-Einstellungen
 #trotzdem per verbundener ESSID konfigurieren.</comment>
-modules=( "!iwconfig" )
+modules="!iwconfig"
 </pre>
 
 </body>
@@ -80,7 +80,7 @@
 # <i>emerge sys-apps/iproute2</i>
 
 <comment># Um iproute2 vor ifconfig den Vorzug zu geben, falls beide installiert sind</comment>
-modules=( "iproute2" )
+modules="iproute2"
 </pre>
 
 <p>
@@ -91,12 +91,12 @@
 </p>
 
 <pre caption="Beispiele für ifconfig und iproute2">
-config_eth0=( "192.168.0.2/24" )
-config_eth0=( "192.168.0.2 netmask 255.255.255.0" )
+config_eth0="192.168.0.2/24"
+config_eth0="192.168.0.2 netmask 255.255.255.0"
 
 <comment># Wir können auch Broadcast angeben</comment>
-config_eth0=( "192.168.0.2/24 brd 192.168.0.255" )
-config_eth0=( "192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255" )
+config_eth0="192.168.0.2/24 brd 192.168.0.255"
+config_eth0="192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
 </pre>
 
 </body>
@@ -192,9 +192,9 @@
 
 <pre caption="Beispiel-DHCP-Konfiguration in /etc/conf.d/net">
 <comment># Wird nur benötigt, wenn mehr als ein DHCP-Module installiert ist.</comment>
-modules=( "dhcpcd" )
+modules="dhcpcd"
 
-config_eth0=( "dhcp" )
+config_eth0="dhcp"
 dhcpcd_eth0="-t 10" <comment># Timeout nach 10 Sekunden</comment>
 dhcp_eth0="release nodns nontp nonis" <comment># Nur eine Adresse anfordern</comment>
 </pre>
@@ -218,11 +218,6 @@
 # <i>emerge net-dialup/ppp</i>
 </pre>
 
-<note>
-Wenn Sie PPPoA benötigen, stellen Sie sicher, dass Sie
->=<c>baselayout-1.12.x</c> verwenden.
-</note>
-
 <p>
 Zweitens, erzeugen Sie das PPP-Netzwerkskript und das Netzwerkskript für die
 Ethernet-Schnittstelle, die von PPP verwendet werden soll:
@@ -234,8 +229,8 @@
 </pre>
 
 <p>
-Überprüfen Sie ob RC_NET_STRICT_CHECKING="yes" in <path>/etc/conf.d/rc</path>
-gesetzt ist.
+Stellen Sie sicher, dass <c>rc_depend_strict</c> in <path>/etc/rc.conf</path>
+auf "YES" gesetzt ist.
 </p>
 
 <p>
@@ -243,26 +238,23 @@
 </p>
 
 <pre caption="Eine grundlegende PPPoE-Konfiguration">
-config_eth0=( null ) <comment>(Geben Sie Ihre Ethernet-Schnittstelle an)</comment>
-config_ppp0=( "ppp" )
+config_eth0=null <comment>(Geben Sie Ihre Ethernet-Schnittstelle an)</comment>
+config_ppp0="ppp"
 link_ppp0="eth0" <comment>(Geben Sie Ihre Ethernet-Schnittstelle an)</comment>
-plugins_ppp0=( "pppoe" )
+plugins_ppp0="pppoe"
 username_ppp0='user'
 password_ppp0='password'
-pppd_ppp0=(
-       "noauth"
-       "defaultroute"
-       "usepeerdns"
-       "holdoff 3"
-       "child-timeout 60"
-       "lcp-echo-interval 15"
-       "lcp-echo-failure 3"
-       noaccomp noccp nobsdcomp nodeflate nopcomp novj novjccomp
-)
-
-depend_ppp0() {
-    need net.eth0
-}
+pppd_ppp0="
+noauth
+defaultroute
+usepeerdns
+holdoff 3
+child-timeout 60
+lcp-echo-interval 15
+lcp-echo-failure 3
+noaccomp noccp nobsdcomp nodeflate nopcomp novj novjccomp"
+
+rc_need_ppp0="net.eth0"
 </pre>
 
 <p>
@@ -283,9 +275,10 @@
 
 <impo>
 Bitte lesen Sie den Abschnitt zu ADSL und PPP in
-<path>/etc/conf.d/net.example</path> sorgfältig durch. Dort sind viel
-detailliertere Erklärungen zu allen Einstellungen enthalten, die Sie für
-Ihre spezielle PPP-Einrichtung wahrscheinlich nutzen können.
+<path>/usr/share/doc/openrc-0.8.3-r1/net.example.bz2</path> sorgfältig durch.
+Dort sind viel detailliertere Erklärungen zu allen Einstellungen enthalten, die
+Sie für Ihre spezielle PPP-Einrichtung wahrscheinlich nutzen können.
+Natürlich müssen Sie <c>0.8.3-r1</c> durch Ihre OpenRC-Version ersetzen.
 </impo>
 
 </body>
@@ -314,11 +307,11 @@
 
 <pre caption="APIPA-Konfiguration in /etc/conf.d/net">
 <comment># Versuchen Sie zuerst DHCP - schlägt das fehl, greifen Sie auf APIPA zurück</comment>
-config_eth0=( "dhcp" )
-fallback_eth0=( "apipa" )
+config_eth0="dhcp"
+fallback_eth0="apipa"
 
 <comment># Nur APIPA verwenden</comment>
-config_eth0=( "apipa" )
+config_eth0="apipa"
 </pre>
 
 </body>
@@ -343,12 +336,10 @@
 slaves_bond0="eth0 eth1 eth2"
 
 <comment># Weisen Sie einer verbundenen Schnittstelle keine IP-Adresse zu</comment>
-config_bond0=( "null" )
+config_bond0="null"
 
 <comment># Von eth0, eth1 and eth2 abhängen, da sie möglicherweise weitere Konfiguration benötigen</comment>
-depend_bond0() {
-  need net.eth0 net.eth1 net.eth2
-}
+rc_need_bond0="net.eth0 net.eth1 net.eth2"
 </pre>
 
 </body>
@@ -371,22 +362,20 @@
 
 <pre caption="Bridge-Konfiguration in /etc/conf.d/net">
 <comment># Konfigurieren Sie die Bridge - weitere Details liefert "man brctl"</comment>
-brctl_br0=( "setfd 0" "sethello 0" "stp off" )
+brctl_br0="setfd 0" "sethello 0" "stp off"
 
 <comment># Um Ports zur Bridge br0 hinzuzufügen</comment>
 bridge_br0="eth0 eth1"
 
 <comment># Die Ports müssen mit Null-Werten konfiguriert werden, damit DHCP nicht gestartet wird.</comment>
-config_eth0=( "null" )
-config_eth1=( "null" )
+config_eth0="null"
+config_eth1="null"
 
 <comment># Letztendlich weisen Sie der Bridge eine Adresse zu - Sie könnten dazu auch DHCP verwenden</comment>
-config_br0=( "192.168.0.1/24" )
+config_br0="192.168.0.1/24"
 
 <comment># Von eth0, eth1 and eth2 abhängen, da sie möglicherweise weitere Konfiguration benötigen</comment>
-depend_br0() {
-  need net.eth0 net.eth1
-}
+rc_need_br0="net.eth0 net.eth1"
 </pre>
 
 <impo>
@@ -401,12 +390,8 @@
 <body>
 
 <p>
-Um die MAC-Adresse Ihrer Schnittstelle zu ändern, muss nichts emerged werden,
-wenn Sie <c>sys-apps/baselayout-1.11.14</c> oder neuer verwenden und zu einer
-bestimmten MAC-Adresse wechseln möchten. Wenn Sie jedoch zu einer zufälligen
-MAC-Adresse  wechseln wollen oder ein Baselayout älter als die obengenannte
-Version verwenden, müssen Sie <c>net-analyzer/macchanger</c> emergen um in der
-Lage zu sein, diese Funktion zu nutzen.
+Falls Bedarf besteht, können Sie die MAC-Adresse Ihres Interfaces mit Hilfe
+der Netzwerk-Konfigurationsdatei ebenfalls ändern.
 </p>
 
 <pre caption="Beispiel zum Wechseln der MAC-Adresse">
@@ -447,7 +432,7 @@
 iptunnel_vpn0="mode ipip remote 207.170.82.2 ttl 255"
 
 <comment># Um die Schnittstelle zu konfigurieren</comment>
-config_vpn0=( "192.168.0.2 peer 192.168.1.1" )
+config_vpn0="192.168.0.2 peer 192.168.1.1"
 </pre>
 
 </body>
@@ -475,12 +460,12 @@
 
 <comment># Sie können auch das VLAN konfigurieren</comment>
 <comment># Weitere Details liefert "man vconfig"</comment>
-vconfig_eth0=( "set_name_type VLAN_PLUS_VID_NO_PAD" )
-vconfig_vlan1=( "set_flag 1" "set_egress_map 2 6" )
+vconfig_eth0="set_name_type VLAN_PLUS_VID_NO_PAD"
+vconfig_vlan1="set_flag 1" "set_egress_map 2 6"
 
 <comment># Die Schnittstellen wie gewohnt onfigurieren</comment>
-config_vlan1=( "172.16.3.1 netmask 255.255.254.0" )
-config_vlan2=( "172.16.2.1 netmask 255.255.254.0" )
+config_vlan1="172.16.3.1 netmask 255.255.254.0"
+config_vlan2="172.16.2.1 netmask 255.255.254.0"
 </pre>
 
 <impo>






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/doc/de/handbook: hb-net-modules.xml
@ 2012-01-25  9:51 Tobias Heinlein (keytoaster)
  0 siblings, 0 replies; 5+ messages in thread
From: Tobias Heinlein (keytoaster) @ 2012-01-25  9:51 UTC (permalink / raw
  To: gentoo-commits

keytoaster    12/01/25 09:51:57

  Modified:             hb-net-modules.xml
  Log:
  Sync to 1.27, thanks to Christian Gebler.

Revision  Changes    Path
1.18                 xml/htdocs/doc/de/handbook/hb-net-modules.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml?r1=1.17&r2=1.18

Index: hb-net-modules.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- hb-net-modules.xml	10 Sep 2011 22:19:17 -0000	1.17
+++ hb-net-modules.xml	25 Jan 2012 09:51:57 -0000	1.18
@@ -4,9 +4,9 @@
 <!-- The content of this document is licensed under the CC-BY-SA license -->
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v 1.17 2011/09/10 22:19:17 keytoaster Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/handbook/hb-net-modules.xml,v 1.18 2012/01/25 09:51:57 keytoaster Exp $ -->
 
-<!-- English CVS Version: 1.26 -->
+<!-- English CVS Version: 1.27 -->
 
 <sections>
 
@@ -15,8 +15,8 @@
 einen DHCP-Client auswählen, Bonding, VLANS und mehr einrichten.
 </abstract>
 
-<version>9</version>
-<date>2011-08-13</date>
+<version>10</version>
+<date>2011-10-23</date>
 
 <section>
 <title>Netzwerkmodule</title>
@@ -44,8 +44,8 @@
 </note>
 
 <pre caption="Modul-Präferenz">
-<comment># Ziehe iproute2 dem Modul ifconfig vor</comment>
-modules="iproute2"
+<comment># Ziehen Sie ifconfig dem Modul iproute2 vor</comment>
+modules="ifconfig"
 
 <comment># Sie können auch andere Module als Schnittstelle angeben
 # Im folgenden Fall bevorzugen wir pump vor dhcpcd</comment>
@@ -71,16 +71,17 @@
 </p>
 
 <p>
-<c>ifconfig</c> ist momentan der Standard bei Gentoo und ist Bestandteil des
-Systemprofils. <c>iproute2</c> ist mächtiger und flexibler, aber nicht
-standardmäßig enthalten.
+<c>ifconfig</c> ist standardmäßig installiert (das Paket <c>net-tools</c> ist
+Bestandteil des Systemprofils). <c>iproute2</c> ist mächtiger und flexibler,
+aber nicht standardmäßig enthalten.
 </p>
 
 <pre caption="Installation von iproute2">
 # <i>emerge sys-apps/iproute2</i>
 
-<comment># Um iproute2 vor ifconfig den Vorzug zu geben, falls beide installiert sind</comment>
-modules="iproute2"
+<comment># Um ifconfig vor iproute2 den Vorzug zu geben, falls beide installiert sind, da openrc
+# ansonsten iproute2 bevorzugt</comment>
+modules="ifconfig"
 </pre>
 
 <p>






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-01-25  9:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-10 22:19 [gentoo-commits] gentoo commit in xml/htdocs/doc/de/handbook: hb-net-modules.xml Tobias Heinlein (keytoaster)
  -- strict thread matches above, loose matches on Subject: below --
2012-01-25  9:51 Tobias Heinlein (keytoaster)
2009-02-13  5:32 Michael MAnch (micm)
2008-03-16 20:47 Jan Hendrik Grahl (grahl)
2008-03-14 20:07 Jan Hendrik Grahl (grahl)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox