aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-02-28 01:35:31 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-02-28 01:35:31 +0000
commita202fac245fef9da0fd502545ca42c16b3e804ff (patch)
tree66b52b978998d1a753b5cd92c79870b689a3288b
parente8f3859ad996b68bef59cadd11c4f39611873b61 (diff)
Use cat > file << EOF construction to create sample ifcfg-eth0 file
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@247 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter07/ethnet.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/chapter07/ethnet.xml b/chapter07/ethnet.xml
index a1630a6cc..317660734 100644
--- a/chapter07/ethnet.xml
+++ b/chapter07/ethnet.xml
@@ -157,17 +157,21 @@ First create the network-scripts directory by running:
</literallayout></blockquote>
<para>
+
Now, create new files in that directory containing the following.
-Example file names are ifcfg-eth0, ifcfg-eth0:3 and ifcfg-eth1:2
+The following creates a sample file ifcfg-eth0:
</para>
<blockquote><literallayout>
+<userinput>cat &gt; /etc/sysconfig/network-scripts/ifcfg-eth0
+ &lt;&lt; EOF</userinput>
ONBOOT=yes
DEVICE=eth0
IP=192.168.1.1
NETMASK=255.255.255.0
BROADCAST=192.168.1.255
+<userinput>EOF</userinput>
</literallayout></blockquote>