source: chapter07/network.xml@ 19e4f62

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 19e4f62 was 19e4f62, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Typo

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9869 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

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