network.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-config-network" revision="sysv">
  8. <?dbhtml filename="network.html"?>
  9. <title>General Network Configuration</title>
  10. <indexterm zone="ch-config-network">
  11. <primary sortas="d-network">network</primary>
  12. <secondary>configuring</secondary></indexterm>
  13. <!--
  14. <para>This section only applies if a network card is to be
  15. configured.</para>
  16. <para>If a network card will not be used, there is likely no need to create
  17. any configuration files relating to network cards. If that is the case, you
  18. will need to remove the <filename class="symlink">network</filename> symlinks
  19. from all run-level directories (<filename
  20. class="directory">/etc/rc.d/rc*.d</filename>) after the bootscripts are
  21. installed in <xref linkend="ch-config-bootscripts"/>.</para>
  22. -->
  23. <sect2>
  24. <title>Creating Network Interface Configuration Files</title>
  25. <para>Which interfaces are brought up and down by the network script
  26. usually depends on the files in <filename
  27. class="directory">/etc/sysconfig/</filename>. This directory should
  28. contain a file for each interface to be configured, such as
  29. <filename>ifconfig.xyz</filename>, where <quote>xyz</quote> should describe
  30. the network card. The interface name (e.g. eth0) is usually appropriate.
  31. Inside this file are attributes to this interface, such as its IP
  32. address(es), subnet masks, and so forth. It is necessary that the stem of
  33. the filename be <emphasis>ifconfig</emphasis>.</para>
  34. <note><para>If the procedure in the previous section was not used, Udev
  35. will assign network card interface names based on system physical
  36. characteristics such as enp2s1. If you are not sure what your interface
  37. name is, you can always run <command>ip link</command> or <command>ls
  38. /sys/class/net</command> after you have booted your system.
  39. </para></note>
  40. <para>The following command creates a sample file for the
  41. <emphasis>eth0</emphasis> device with a static IP address:</para>
  42. <!-- jhalfs relies on the values for IFACE, IP, etc. If you want to change
  43. them, please inform the jhalfs maintainer(s). -->
  44. <screen><userinput>cd /etc/sysconfig/
  45. cat &gt; ifconfig.<replaceable>eth0</replaceable> &lt;&lt; "EOF"
  46. <literal>ONBOOT=<replaceable>yes</replaceable>
  47. IFACE=<replaceable>eth0</replaceable>
  48. SERVICE=<replaceable>ipv4-static</replaceable>
  49. IP=<replaceable>192.168.1.2</replaceable>
  50. GATEWAY=<replaceable>192.168.1.1</replaceable>
  51. PREFIX=<replaceable>24</replaceable>
  52. BROADCAST=<replaceable>192.168.1.255</replaceable></literal>
  53. EOF</userinput></screen>
  54. <para>The values in italics must be changed in every file to match
  55. the proper setup.</para>
  56. <para>If the <envar>ONBOOT</envar> variable is set to <quote>yes</quote> the
  57. System V network script will bring up the Network Interface Card (NIC) during
  58. booting of the system. If set to anything but <quote>yes</quote> the NIC
  59. will be ignored by the network script and not be automatically brought up.
  60. The interface can be manually started or stopped with the
  61. <command>ifup</command> and <command>ifdown</command> commands.</para>
  62. <para>The <envar>IFACE</envar> variable defines the interface name,
  63. for example, eth0. It is required for all network device configuration
  64. files. The filename extension must match this value.</para>
  65. <para>The <envar>SERVICE</envar> variable defines the method used for
  66. obtaining the IP address. The LFS-Bootscripts package has a modular IP
  67. assignment format, and creating additional files in the <filename
  68. class="directory">/lib/services/</filename> directory allows other IP
  69. assignment methods. This is commonly used for Dynamic Host Configuration
  70. Protocol (DHCP), which is addressed in the BLFS book.</para>
  71. <para>The <envar>GATEWAY</envar> variable should contain the default
  72. gateway IP address, if one is present. If not, then comment out the
  73. variable entirely.</para>
  74. <para>The <envar>PREFIX</envar> variable contains the number of
  75. bits used in the subnet. Each octet in an IP address is 8 bits. If the
  76. subnet's netmask is 255.255.255.0, then it is using the first three octets
  77. (24 bits) to specify the network number. If the netmask is 255.255.255.240,
  78. it would be using the first 28 bits. Prefixes longer than 24 bits are
  79. commonly used by DSL and cable-based Internet Service Providers (ISPs).
  80. In this example (PREFIX=24), the netmask is 255.255.255.0. Adjust the
  81. <envar>PREFIX</envar> variable according to your specific subnet.
  82. If omitted, the PREFIX defaults to 24.</para>
  83. <para>For more information see the <command>ifup</command> man page.</para>
  84. </sect2>
  85. <sect2 id="resolv.conf">
  86. <title>Creating the /etc/resolv.conf File</title>
  87. <indexterm zone="resolv.conf">
  88. <primary sortas="e-/etc/resolv.conf">/etc/resolv.conf</primary>
  89. </indexterm>
  90. <para>The system will need some means of obtaining Domain Name Service
  91. (DNS) name resolution to resolve Internet domain names to IP addresses, and
  92. vice versa. This is best achieved by placing the IP address of the DNS
  93. server, available from the ISP or network administrator, into
  94. <filename>/etc/resolv.conf</filename>. Create the file by running the
  95. following:</para>
  96. <screen><userinput>cat &gt; /etc/resolv.conf &lt;&lt; "EOF"
  97. <literal># Begin /etc/resolv.conf
  98. domain <replaceable>&lt;Your Domain Name&gt;</replaceable>
  99. nameserver <replaceable>&lt;IP address of your primary nameserver&gt;</replaceable>
  100. nameserver <replaceable>&lt;IP address of your secondary nameserver&gt;</replaceable>
  101. # End /etc/resolv.conf</literal>
  102. EOF</userinput></screen>
  103. <para>The <varname>domain</varname> statement can be omitted
  104. or replaced with a <varname>search</varname> statement. See the man page for
  105. resolv.conf for more details.</para>
  106. <para>Replace <replaceable>&lt;IP address of the nameserver&gt;</replaceable>
  107. with the IP address of the DNS most appropriate for the setup. There will
  108. often be more than one entry (requirements demand secondary servers for
  109. fallback capability). If you only need or want one DNS server, remove the
  110. second <emphasis>nameserver</emphasis> line from the file. The IP address
  111. may also be a router on the local network.</para>
  112. <note>
  113. <para>The Google Public IPv4 DNS addresses are 8.8.8.8 and 8.8.4.4.</para>
  114. </note>
  115. </sect2>
  116. <sect2 id="ch-config-hostname">
  117. <title>Configuring the system hostname</title>
  118. <indexterm zone="ch-config-hostname">
  119. <primary sortas="d-hostname">hostname</primary>
  120. <secondary>configuring</secondary>
  121. </indexterm>
  122. <para>During the boot process, the file <filename>/etc/hostname</filename>
  123. is used for establishing the system's hostname.</para>
  124. <para>Create the <filename>/etc/hostname</filename> file and enter a
  125. hostname by running:</para>
  126. <screen><userinput>echo "<replaceable>&lt;lfs&gt;</replaceable>" &gt; /etc/hostname</userinput></screen>
  127. <para><replaceable>&lt;lfs&gt;</replaceable> needs to be replaced with the
  128. name given to the computer. Do not enter the Fully Qualified Domain Name
  129. (FQDN) here. That information is put in the
  130. <filename>/etc/hosts</filename> file.</para>
  131. </sect2>
  132. <sect2 id="ch-config-hosts">
  133. <title>Customizing the /etc/hosts File</title>
  134. <indexterm zone="ch-config-hosts">
  135. <primary sortas="e-/etc/hosts">/etc/hosts</primary>
  136. </indexterm>
  137. <indexterm zone="ch-config-hosts">
  138. <primary sortas="d-localnet">localnet</primary>
  139. <secondary>/etc/hosts</secondary>
  140. </indexterm>
  141. <indexterm zone="ch-config-hosts">
  142. <primary sortas="d-network">network</primary>
  143. <secondary>/etc/hosts</secondary>
  144. </indexterm>
  145. <para>Decide on the IP address, fully-qualified domain name (FQDN), and
  146. possible aliases for use in the <filename>/etc/hosts</filename> file. The
  147. syntax is:</para>
  148. <screen><literal>IP_address myhost.example.org aliases</literal></screen>
  149. <para>Unless the computer is to be visible to the Internet (i.e., there is
  150. a registered domain and a valid block of assigned IP addresses&mdash;most
  151. users do not have this), make sure that the IP address is in the private
  152. network IP address range. Valid ranges are:</para>
  153. <screen><literal>Private Network Address Range Normal Prefix
  154. 10.0.0.1 - 10.255.255.254 8
  155. 172.x.0.1 - 172.x.255.254 16
  156. 192.168.y.1 - 192.168.y.254 24</literal></screen>
  157. <para>x can be any number in the range 16-31. y can be any number in the
  158. range 0-255.</para>
  159. <para>A valid private IP address could be 192.168.1.1. A valid FQDN for
  160. this IP could be lfs.example.org.</para>
  161. <para>Even if not using a network card, a valid FQDN is still required.
  162. This is necessary for certain programs to operate correctly.</para>
  163. <para>Create the <filename>/etc/hosts</filename> file by running:</para>
  164. <screen><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"
  165. <literal># Begin /etc/hosts
  166. 127.0.0.1 localhost.localdomain localhost
  167. 127.0.1.1 <replaceable>&lt;FQDN&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable>
  168. <replaceable>&lt;192.168.1.1&gt;</replaceable> <replaceable>&lt;FQDN&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable> <replaceable>[alias1] [alias2 ...]</replaceable>
  169. ::1 localhost ip6-localhost ip6-loopback
  170. ff02::1 ip6-allnodes
  171. ff02::2 ip6-allrouters
  172. # End /etc/hosts</literal>
  173. EOF</userinput></screen>
  174. <para>The <replaceable>&lt;192.168.1.1&gt;</replaceable>,
  175. <replaceable>&lt;FQDN&gt;</replaceable>, and
  176. <replaceable>&lt;HOSTNAME&gt;</replaceable> values need to be
  177. changed for specific uses or requirements (if assigned an IP address by a
  178. network/system administrator and the machine will be connected to an
  179. existing network). The optional alias name(s) can be omitted.</para>
  180. <!-- This is not very useful
  181. <para>If a network card is not going to be configured, create the
  182. <filename>/etc/hosts</filename> file by running:</para>
  183. <screen role="nodump"><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"
  184. <literal># Begin /etc/hosts (no network card version)
  185. 127.0.0.1 localhost
  186. 127.0.1.1 <replaceable>&lt;FQDN&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable>
  187. ::1 localhost ip6-localhost ip6-loopback
  188. ff02::1 ip6-allnodes
  189. ff02::2 ip6-allrouters
  190. # End /etc/hosts (no network card version)</literal>
  191. EOF</userinput></screen> -->
  192. </sect2>
  193. </sect1>