network.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>We also need to add this directory path to the /etc/sysconfig/rc file
  27. so that other scripts (like ifup and ifdown) know where this directory is
  28. located.</para>
  29. <para>Update the /etc/sysconfig/rc file by running:</para>
  30. <para><screen><userinput>echo "network_devices=/etc/sysconfig/network-devices" >> /etc/sysconfig/rc</userinput></screen></para>
  31. <para>Now, new files are created in that directory containing the following.
  32. The following command creates a sample ifconfig.eth0 file:</para>
  33. <para><screen><userinput>cat &gt; /etc/sysconfig/network-devices/ifconfig.eth0 &lt;&lt; "EOF"</userinput>
  34. ONBOOT=yes
  35. DEVICE=eth0
  36. IP=192.168.1.1
  37. NETMASK=255.255.255.0
  38. BROADCAST=192.168.1.255
  39. <userinput>EOF</userinput></screen></para>
  40. <para>Of course, the values of those variables have to be changed
  41. in every file to match the proper setup. Usually NETMASK and BROADCAST
  42. will remain the same, just the DEVICE and IP variables will change per
  43. network interface. If the ONBOOT variable is set to yes, the network script
  44. will bring it up during boot up of the system. If set to anything else but
  45. yes it will be ignored by the network script and thus not brought up.</para>
  46. </sect2>
  47. </sect1>