network.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>If you decide to rename or move this /etc/sysconfig/network-devices
  27. directory, make sure you update the /etc/sysconfig/rc file as well and
  28. update the network_devices by providing it with the new path.</para>
  29. <para>Now, new files are created in that directory containing the following.
  30. The following command creates a sample ifconfig.eth0 file:</para>
  31. <para><screen><userinput>cat &gt; /etc/sysconfig/network-devices/ifconfig.eth0 &lt;&lt; "EOF"</userinput>
  32. ONBOOT=yes
  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. If the ONBOOT variable is set
  39. to yes, the network script will bring it up during boot up of the system.
  40. If set to anything else but yes it will be ignored by the network script
  41. and thus not brought up.</para>
  42. </sect2>
  43. </sect1>