network.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <sect1 id="ch07-network">
  2. <title>Configuring the network script</title>
  3. <?dbhtml filename="network.html" dir="chapter07"?>
  4. <para>This section only applies if you're going to configure a network
  5. card.</para>
  6. <sect2>
  7. <title>Configuring default gateway</title>
  8. <para>If you're on a network you may need to setup the default gateway for
  9. this machine. This is done by adding the proper values to the
  10. /etc/sysconfig/network file by running the following:</para>
  11. <para><screen><userinput>cat &gt;&gt; /etc/sysconfig/network &lt;&lt; "EOF"</userinput>
  12. GATEWAY=192.168.1.2
  13. GATEWAY_IF=eth0
  14. <userinput>EOF</userinput></screen></para>
  15. <para>The values for GATEWAY and GATEWAY_IF need to be changed to match
  16. your network setup. GATEWAY contains the IP address of the default
  17. gateway, and GATEWAY_IF contains the network interface through which the
  18. default gateway can be reached.</para>
  19. </sect2>
  20. <sect2>
  21. <title>Creating network interface configuration files</title>
  22. <para>Which interfaces are brought up and down by the network script depends on
  23. the files in the /etc/sysconfig/network-devices directory. This
  24. directory should contain files in the form of ifconfig.xyz, where xyz is a
  25. network interface name (such as eth0 or eth0:1)</para>
  26. <para>First let's create this directory by running:</para>
  27. <para><screen><userinput>mkdir /etc/sysconfig/nic-config</userinput></screen></para>
  28. <para>Now, new files are created in that directory containing the following.
  29. The following command creates a sample ifconfig.eth0 file:</para>
  30. <para><screen><userinput>cat &gt; /etc/sysconfig/network-devices/ifconfig.eth0 &lt;&lt; "EOF"</userinput>
  31. ONBOOT=yes
  32. DEVICE=eth0
  33. IP=192.168.1.1
  34. NETMASK=255.255.255.0
  35. BROADCAST=192.168.1.255
  36. <userinput>EOF</userinput></screen></para>
  37. <para>Of course, the values of those variables have to be changed
  38. in every file to match the proper setup. Usually NETMASK and BROADCAST
  39. will remain the same, just the DEVICE and IP variables will change per
  40. network interface. If the ONBOOT variable is set to yes, the network script
  41. will bring it up during boot up of the system. If set to anything else but
  42. yes it will be ignored by the network script and thus not brought up.</para>
  43. </sect2>
  44. </sect1>