network.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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-scripts-network">
  8. <?dbhtml filename="network.html"?>
  9. <title>General Network Configuration</title>
  10. <indexterm zone="ch-scripts-network">
  11. <primary sortas="d-network">network</primary>
  12. <secondary>configuring</secondary></indexterm>
  13. <para>This section only applies if a network card is to be
  14. configured.</para>
  15. <para>If a network card will not be used, there is likely no need to create
  16. any configuration files relating to network cards. If that is the case, you
  17. will need to remove the <filename class="symlink">network</filename> symlinks
  18. from all run-level directories (<filename
  19. class="directory">/etc/rc.d/rc*.d</filename>) after the bootscripts are
  20. installed in <xref linkend="ch-scripts-bootscripts"/>.</para>
  21. <sect2 id='stable-net-names'>
  22. <title>Creating stable names for network interfaces</title>
  23. <para>If there is only one network interface in the system to be
  24. configured, this section is optional, although it will never be wrong to do
  25. it. In many cases (e.g. a laptop with a wireless and a wired interface),
  26. accomplishing the configuration in this section is necessary.</para>
  27. <para>With Udev and modular network drivers, the network interface numbering
  28. is not persistent across reboots by default, because the drivers are loaded
  29. in parallel and, thus, in random order. For example, on a computer having
  30. two network cards made by Intel and Realtek, the network card manufactured
  31. by Intel may become <filename class="devicefile">eth0</filename> and the
  32. Realtek card becomes <filename class="devicefile">eth1</filename>. In some
  33. cases, after a reboot the cards get renumbered the other way around. To
  34. avoid this, Udev comes with a script and some rules to assign stable names
  35. to network cards based on their MAC address.</para>
  36. <para>If using the traditional network interface names such as eth0 is desired,
  37. generate a custom Udev rule:</para>
  38. <screen><userinput>bash /lib/udev/init-net-rules.sh</userinput></screen>
  39. <para> Now, inspect the
  40. <filename>/etc/udev/rules.d/70-persistent-net.rules</filename> file, to
  41. find out which name was assigned to which network device:</para>
  42. <screen role="nodump"><userinput>cat /etc/udev/rules.d/70-persistent-net.rules</userinput></screen>
  43. <note><para>In some cases such as when MAC addresess have been assigned to
  44. a network card manually or in a virtual environment such as Xen,
  45. the network rules file may not have been generated because addresses
  46. are not consistently assigned. In these cases, just continue to
  47. the next section.</para></note>
  48. <para>The file begins with a comment block followed by two lines for each
  49. NIC. The first line for each NIC is a commented description showing its
  50. hardware IDs (e.g. its PCI vendor and device IDs, if it's a PCI card),
  51. along with its driver in parentheses, if the driver can be found. Neither
  52. the hardware ID nor the driver is used to determine which name to give an
  53. interface; this information is only for reference. The second line is the
  54. Udev rule that matches this NIC and actually assigns it a name.</para>
  55. <para>All Udev rules are made up of several keys, separated by commas and
  56. optional whitespace. This rule's keys and an explanation of each of them
  57. are as follows:</para>
  58. <itemizedlist>
  59. <listitem>
  60. <para><literal>SUBSYSTEM=="net"</literal> - This tells Udev to ignore
  61. devices that are not network cards.</para>
  62. </listitem>
  63. <listitem>
  64. <para><literal>ACTION=="add"</literal> - This tells Udev to ignore this
  65. rule for a uevent that isn't an add ("remove" and "change" uevents also
  66. happen, but don't need to rename network interfaces).</para>
  67. </listitem>
  68. <listitem>
  69. <para><literal>DRIVERS=="?*"</literal> - This exists so that Udev will
  70. ignore VLAN or bridge sub-interfaces (because these sub-interfaces do
  71. not have drivers). These sub-interfaces are skipped because the name
  72. that would be assigned would collide with their parent devices.</para>
  73. </listitem>
  74. <listitem>
  75. <para><literal>ATTR{address}</literal> - The value of this key is the
  76. NIC's MAC address.</para>
  77. </listitem>
  78. <listitem>
  79. <para><literal>ATTR{type}=="1"</literal> - This ensures the rule only
  80. matches the primary interface in the case of certain wireless drivers,
  81. which create multiple virtual interfaces. The secondary interfaces are
  82. skipped for the same reason that VLAN and bridge sub-interfaces are
  83. skipped: there would be a name collision otherwise.</para>
  84. </listitem>
  85. <listitem>
  86. <para><literal>KERNEL=="eth*"</literal> - This key was added to the
  87. Udev rule generator to handle machines that have multiple network
  88. interfaces, all with the same MAC address (the PS3 is one such
  89. machine). If the independent interfaces have different basenames,
  90. this key will allow Udev to tell them apart. This is generally not
  91. necessary for most Linux From Scratch users, but does not hurt.</para>
  92. </listitem>
  93. <listitem>
  94. <para><literal>NAME</literal> - The value of this key is the name that
  95. Udev will assign to this interface.</para>
  96. </listitem>
  97. </itemizedlist>
  98. <para>The value of <literal>NAME</literal> is the important part. Make sure
  99. you know which name has been assigned to each of your network cards before
  100. proceeding, and be sure to use that <literal>NAME</literal> value when
  101. creating your configuration files below.</para>
  102. </sect2>
  103. <sect2>
  104. <title>Creating Network Interface Configuration Files</title>
  105. <para>Which interfaces are brought up and down by the network script
  106. depends on the files in <filename
  107. class="directory">/etc/sysconfig/</filename>. This directory should
  108. contain a file for each interface to be configured, such as
  109. <filename>ifconfig.xyz</filename>, where <quote>xyz</quote> is required to
  110. be a Network Card Interface name (e.g. eth0). Inside this file are
  111. attributes to this interface, such as its IP address(es), subnet masks, and
  112. so forth. It is necessary that the stem of the filename be
  113. <emphasis>ifconfig</emphasis>.</para>
  114. <note><para>If the procedure in the previous section was not used, Udev
  115. will assign network card interface names based on system physical
  116. characteristics such as enp2s1. If you are not sure what your interface
  117. name is, you can always run <command>ip link</command> after you have
  118. booted your system. Again, it is important that ifconfig.xyz is named
  119. after correct network card interface name (e.g. ifconfig.enp2s1 or
  120. ifconfig.eth0) or your network interface will not be initialized during
  121. the boot process.</para></note>
  122. <para>The following command creates a sample file for the
  123. <emphasis>eth0</emphasis> device with a static IP address:</para>
  124. <screen><userinput>cd /etc/sysconfig/
  125. cat &gt; ifconfig.eth0 &lt;&lt; "EOF"
  126. <literal>ONBOOT=yes
  127. IFACE=eth0
  128. SERVICE=ipv4-static
  129. IP=192.168.1.2
  130. GATEWAY=192.168.1.1
  131. PREFIX=24
  132. BROADCAST=192.168.1.255</literal>
  133. EOF</userinput></screen>
  134. <para>The values of these variables must be changed in every file to match
  135. the proper setup.</para>
  136. <para>If the <envar>ONBOOT</envar> variable is set to <quote>yes</quote> the
  137. System V network script will bring up the Network Interface Card (NIC) during
  138. booting of the system. If set to anything but <quote>yes</quote> the NIC
  139. will be ignored by the network script and not be automatically brought up.
  140. The interface can be manually started or stopped with the
  141. <command>ifup</command> and <command>ifdown</command> commands.</para>
  142. <para>The <envar>IFACE</envar> variable defines the interface name,
  143. for example, eth0. It is required for all network device configuration
  144. files. </para>
  145. <para>The <envar>SERVICE</envar> variable defines the method used for
  146. obtaining the IP address. The LFS-Bootscripts package has a modular IP
  147. assignment format, and creating additional files in the <filename
  148. class="directory">/lib/services/</filename> directory allows other IP
  149. assignment methods. This is commonly used for Dynamic Host Configuration
  150. Protocol (DHCP), which is addressed in the BLFS book.</para>
  151. <para>The <envar>GATEWAY</envar> variable should contain the default
  152. gateway IP address, if one is present. If not, then comment out the
  153. variable entirely.</para>
  154. <para>The <envar>PREFIX</envar> variable contains the number of
  155. bits used in the subnet. Each octet in an IP address is 8 bits. If the
  156. subnet's netmask is 255.255.255.0, then it is using the first three octets
  157. (24 bits) to specify the network number. If the netmask is 255.255.255.240,
  158. it would be using the first 28 bits. Prefixes longer than 24 bits are
  159. commonly used by DSL and cable-based Internet Service Providers (ISPs).
  160. In this example (PREFIX=24), the netmask is 255.255.255.0. Adjust the
  161. <envar>PREFIX</envar> variable according to your specific subnet.
  162. If omitted, the PREFIX defaults to 24.</para>
  163. <para>For more information see the <command>ifup</command> man page.</para>
  164. </sect2>
  165. <sect2 id="systemd-net-enable">
  166. <title>Configuring the Network Interface Card at boot (systemd)</title>
  167. <para>Enabling of the network interface card configuration
  168. in systemd is done per interface. To enable network interface card
  169. configuration at boot, run:</para>
  170. <screen><userinput>systemctl enable ifupdown@eth0</userinput></screen>
  171. <para>To disable a previously enabled network interface
  172. card configuration at boot, run:</para>
  173. <screen><userinput>systemctl disable ifupdown@eth0</userinput></screen>
  174. <para>To manually start the network interface card configuration,
  175. run:</para>
  176. <screen><userinput>systemctl start ifupdown@eth0</userinput></screen>
  177. <para>Replace eth0 with the correct network interface card
  178. name as described on the beginning of this page.</para>
  179. <note><para>The network card can also be started or stopped
  180. with the traditional <command>ifup &lt;device&gt;</command> or
  181. <command>ifdown &lt;device&gt;</command> commands.</para></note>
  182. </sect2>
  183. <sect2 id="resolv.conf">
  184. <title>Creating the /etc/resolv.conf File</title>
  185. <indexterm zone="resolv.conf">
  186. <primary sortas="e-/etc/resolv.conf">/etc/resolv.conf</primary>
  187. </indexterm>
  188. <para>If the system is going to be connected to the Internet, it will
  189. need some means of Domain Name Service (DNS) name resolution to
  190. resolve Internet domain names to IP addresses, and vice versa. This is
  191. best achieved by placing the IP address of the DNS server, available
  192. from the ISP or network administrator, into
  193. <filename>/etc/resolv.conf</filename>. Create the file by running the
  194. following:</para>
  195. <screen><userinput>cat &gt; /etc/resolv.conf &lt;&lt; "EOF"
  196. <literal># Begin /etc/resolv.conf
  197. domain <replaceable>&lt;Your Domain Name&gt;</replaceable>
  198. nameserver <replaceable>&lt;IP address of your primary nameserver&gt;</replaceable>
  199. nameserver <replaceable>&lt;IP address of your secondary nameserver&gt;</replaceable>
  200. # End /etc/resolv.conf</literal>
  201. EOF</userinput></screen>
  202. <para>The <varname>domain</varname> statement can be omitted
  203. or replaced with a <varname>search</varname> statement. See the man page for
  204. resolv.conf for more details.</para>
  205. <para>Replace <replaceable>&lt;IP address of the nameserver&gt;</replaceable>
  206. with the IP address of the DNS most appropriate for the setup. There will
  207. often be more than one entry (requirements demand secondary servers for
  208. fallback capability). If you only need or want one DNS server, remove the
  209. second <emphasis>nameserver</emphasis> line from the file. The IP address
  210. may also be a router on the local network.</para>
  211. <note><para>The Google Public IPv4 DNS addresses are 8.8.8.8 and 8.8.4.4.</para></note>
  212. </sect2>
  213. </sect1>