en-US/Kickstart2.xml

Rüdiger Landmann rlandmann at fedoraproject.org
Thu Jul 16 07:02:22 UTC 2009


 en-US/Kickstart2.xml |   12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

New commits:
commit 6b6b1ba39500d008e577dddeba54fb6cab97cf1e
Author: Ruediger Landmann <r.landmann at redhat.com>
Date:   Thu Jul 16 16:56:29 2009 +1000

    Clarify kickstart network option (RHEL5 IG BZ#510173)

diff --git a/en-US/Kickstart2.xml b/en-US/Kickstart2.xml
index d9cca9f..51e1d6a 100644
--- a/en-US/Kickstart2.xml
+++ b/en-US/Kickstart2.xml
@@ -1369,7 +1369,7 @@ logvol / --vgname=myvg --size=2000 --name=rootvol
 					<para>
 						Configures network information for the system. If the kickstart installation does not require networking (in other words, it is not installed over NFS, HTTP, or FTP), networking is not configured for the system. If the installation does require networking and network information is not provided in the kickstart file, the installation program assumes that the installation should be done over eth0 via a dynamic IP address (BOOTP/DHCP), and configures the final, installed system to determine its IP address dynamically. The <command>network</command> option configures networking information for kickstart installations via a network as well as for the installed system.
 					</para>
-
+<screen>network [--bootproto=<replaceable><dhcp|bootp|static></replaceable>] [--device=<replaceable><device></replaceable>] [--ip=<replaceable><ip_address></replaceable>] [--ipv6=<replaceable><ipv6_address></replaceable>] [--gateway=<replaceable><ip_address></replaceable>] [--nameserver=<replaceable><ip_address></replaceable>] [--hostname=<replaceable><hostname></replaceable>] [--ethtool=<replaceable><settings></replaceable>] [--essid=<replaceable><SSID></replaceable>] [--wepkey=<replaceable><key></replaceable>] [--onboot=<replaceable><yes|no></replaceable>] [--dhcpclass=<replaceable><DHCP_class></replaceable>] [--mtu=<replaceable><MTU></replaceable>] [--noipv4] [--noipv6]</screen>
 					<itemizedlist>
 
 <listitem>
@@ -1390,7 +1390,10 @@ logvol / --vgname=myvg --size=2000 --name=rootvol
 	</para>
 <screen>network --bootproto=bootp</screen>
 	<para>
-		The static method requires that you enter all the required networking information in the kickstart file. As the name implies, this information is static and are used during and after the installation. The line for static networking is more complex, as you must include all network configuration information on one line. You must specify the IP address, netmask, gateway, and nameserver. For example: (the "\" indicates that this should be read as one continuous line):
+		The static method requires that you enter all the required networking information in the kickstart file. As the name implies, this information is static and is used during and after the installation. The line for static networking is more complex, as you must include all network configuration information on one line. You must specify the IP address, netmask, gateway, and nameserver.
+	</para>
+	<para>
+		In the following example, the "\" indicates that you should read the example as one continuous line, although its presentation on this page has broken it. Note that you cannot use the "\" in a real kickstart file, and must include all this information on a single line with no break.
 	</para>
 <screen>network --bootproto=static --ip=10.0.2.15 --netmask=255.255.255.0 \
 --gateway=10.0.2.254 --nameserver=10.0.2.1
@@ -1408,7 +1411,10 @@ logvol / --vgname=myvg --size=2000 --name=rootvol
 
 		<listitem>
 
-					<para>You can also configure multiple nameservers here. To do so, specify them as a comma-delimited list in the command line. For example:</para>
+					<para>You can also configure multiple nameservers here. To do so, specify them as a comma-delimited list in the command line.</para>
+					<para>
+						In the following example, the "\" indicates that you should read the example as one continuous line, although its presentation on this page has broken it. Note that you cannot use the "\" in a real kickstart file, and must include all this information on a single line with no break.
+					</para>
 					
 <screen>network --bootproto=static --ip=10.0.2.15 --netmask=255.255.255.0 \
 --gateway=10.0.2.254 --nameserver 192.168.2.1,192.168.3.1





More information about the Fedora-docs-commits mailing list