diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-28 01:35:31 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-28 01:35:31 +0000 |
commit | a202fac245fef9da0fd502545ca42c16b3e804ff (patch) | |
tree | 66b52b978998d1a753b5cd92c79870b689a3288b | |
parent | e8f3859ad996b68bef59cadd11c4f39611873b61 (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.xml | 6 |
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 > /etc/sysconfig/network-scripts/ifcfg-eth0 + << 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> |