Gentoo Archives: gentoo-commits

From: "JosA MarAa Alonso (nimiux)" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in xml/htdocs/doc/es/handbook: hb-net-start.xml
Date: Sat, 30 Jun 2012 21:11:19
Message-Id: 20120630211109.92F8C2004B@flycatcher.gentoo.org
1 nimiux 12/06/30 21:11:09
2
3 Modified: hb-net-start.xml
4 Log:
5 Fix bug #416543 - Update starters instructions on networking to include DNS servers for static IP address configuration
6
7 Revision Changes Path
8 1.10 xml/htdocs/doc/es/handbook/hb-net-start.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/es/handbook/hb-net-start.xml?rev=1.10&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/es/handbook/hb-net-start.xml?rev=1.10&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/es/handbook/hb-net-start.xml?r1=1.9&r2=1.10
13
14 Index: hb-net-start.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/es/handbook/hb-net-start.xml,v
17 retrieving revision 1.9
18 retrieving revision 1.10
19 diff -u -r1.9 -r1.10
20 --- hb-net-start.xml 30 Sep 2011 15:48:19 -0000 1.9
21 +++ hb-net-start.xml 30 Jun 2012 21:11:09 -0000 1.10
22 @@ -4,7 +4,7 @@
23 <!-- The content of this document is licensed under the CC-BY-SA license -->
24 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
25
26 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/es/handbook/hb-net-start.xml,v 1.9 2011/09/30 15:48:19 nimiux Exp $ -->
27 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/es/handbook/hb-net-start.xml,v 1.10 2012/06/30 21:11:09 nimiux Exp $ -->
28
29 <sections>
30
31 @@ -13,8 +13,8 @@
32 en la mayoría de situaciones comunes.
33 </abstract>
34
35 -<version>9</version>
36 -<date>2011-08-13</date>
37 +<version>10</version>
38 +<date>2012-06-29</date>
39
40 <section>
41 <title>Comenzando</title>
42 @@ -23,13 +23,13 @@
43 <note>
44 Este documento asume que se tiene correctamente configurado el núcleo,
45 los módulos para su hardware y que conoce el nombre de su interfaz
46 -hardware. También asumiremos que se está configurando eth0, pero podría
47 -tratarse de eth1, wlan0, etc.
48 +hardware. También asumiremos que se está configurando <c>eth0</c>, pero
49 +podría tratarse de <c>eth1</c>, <c>wlan0</c>, etc.
50 </note>
51
52 <p>
53 Para comenzar a configurar su tarjeta de red, necesitamos que el sistema
54 -RC (runlevel scripts o initscripts) de Gentoo la reconozca. Esto se hace
55 +RC (guiones de inicio) de Gentoo la reconozca. Esto se hace
56 creando un enlace simbólico desde <c>net.lo</c> a <c>net.eth0</c> en
57 <path>/etc/init.d</path>
58 </p>
59 @@ -51,13 +51,15 @@
60 <comment># Para DHCP</comment>
61 config_eth0="dhcp"
62
63 -<comment># Para IP estática usando notación CIDR</comment>
64 +<comment># Para una IP estática usando notación CIDR</comment>
65 config_eth0="192.168.0.7/24"
66 routes_eth0="default via 192.168.0.1"
67 +dns_servers_eth0="192.168.0.1 8.8.8.8"
68
69 -<comment># Para IP estática usando notación de máscara de red</comment>
70 +<comment># Para una IP estática usando notación de máscara de red</comment>
71 config_eth0="192.168.0.7 netmask 255.255.255.0"
72 routes_eth0="default via 192.168.0.1"
73 +dns_servers_eth0="192.168.0.1 8.8.8.8"
74 </pre>
75
76 <note>
77 @@ -79,7 +81,7 @@
78
79 <p>
80 Ahora que ya hemos configurado nuestra interfaz, podemos iniciarla o
81 -detenerla utilizando los siguientes comandos:
82 +detenerla utilizando las siguientes órdenes:
83 </p>
84
85 <pre caption="Comenzar y detener los guiones de red">
86 @@ -98,8 +100,8 @@
87 <p>
88 Ahora que ya ha iniciado y detenido la interfaz de red, quizá quiera que
89 comience automáticamente cuando Gentoo arranca. Aquí tiene cómo hacerlo.
90 -El último comando "rc" indica a Gentoo que inicie todos los guiones en el
91 -nivel de ejecución actual que no hayan sido iniciados ya.
92 +La última orden "rc" indica a Gentoo que inicie todos los guiones en el
93 +nivel de ejecución actual que todavía no se hayan sido iniciado.
94 </p>
95
96 <pre caption="Configurando una interfaz de red para que inicie en el arranque">