diff options
-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> |