- Timestamp:
- Mar 30, 2014, 8:39:45 PM (11 years ago)
- Branches:
- clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- 6757dcab
- Parents:
- bf9148a
- Location:
- BOOK
- Files:
-
- 2 deleted
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/introduction/common/changelog.xml
rbf9148a r31e77c0 41 41 <itemizedlist> 42 42 <listitem> 43 <para>[Chris] - Modified network section to split systemd/sysconfig 44 network configurations.</para> 45 </listitem> 46 <listitem> 43 47 <para>[Chris] - Removed instructions to install systemd manpages - 44 48 they are now automatically installed by default.</para> -
BOOK/network/alpha-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/common/choose.xml
rbf9148a r31e77c0 9 9 <?dbhtml filename="choose.html"?> 10 10 11 <title> DHCP or StaticNetworking?</title>11 <title>Systemd Networking?</title> 12 12 13 13 <indexterm zone="ch-network-choose"> … … 24 24 responsible for setting up your options.</para> 25 25 26 <para>To configure a Static Interface, Follow <xref linkend="ch-network-static"/>.</para>26 <para>To use systemd to configure a Network Interface, Follow <xref linkend="ch-systemd-network"/>.</para> 27 27 28 <para>To configure a DHCP Interface, Follow <xref linkend="ch-network-dhcpcd"/>.</para>28 <para>To use CLFS-network-scripts to configure a Network Interface, Follow <xref linkend="ch-scripts-network-scripts"/>.</para> 29 29 30 30 </sect1> -
BOOK/network/common/dhcpcd.xml
rbf9148a r31e77c0 46 46 </sect2> 47 47 48 <sect2 id="conf-dhcpcd" role="configuration"> 49 <title>Creating the DHCP Network Interface Configuration File</title> 50 51 <para>The following is an example for the eth0 interface. Refer to the 52 dhcpcd.conf man page for more information. This step may be skipped if 53 default behavior of dhcpcd is required.</para> 54 55 <para>Create the <filename>/etc/dhcpcd.conf</filename> configuration file 56 using the following commands. Adjust appropriately for additional options:</para> 57 58 <screen><userinput>cd /etc && 59 cat > dhcpcd.conf << "EOF" 60 <literal># dhcpcd configuration eth0 interface 61 # See dhcpcd.conf(5) for details. 62 63 interface eth0 64 # dhcpcd-run-hooks uses these options. 65 option subnet_mask, routers, domain_name_servers 66 67 # The default timeout for waiting for a DHCP response is 30 seconds 68 # which may be too long or too short and can be changed here. 69 timeout 16</literal> 70 EOF</userinput></screen> 71 72 <para>To configure another Static Interface, Follow <xref linkend="ch-network-static"/>.</para> 73 74 </sect2> 75 76 <sect2> 77 <title>Configuring the Network Interface at boot</title> 78 79 <para>Enabling of the Network Interface configuration is 80 done per interface. To enable Network Interface 81 configuration at boot, run:</para> 82 83 <screen role="nodump"><userinput>systemctl enable dhcpcd@eth0</userinput></screen> 84 85 <para>To disable previously enabled Network Interface 86 configuration at boot, run:</para> 87 88 <screen role="nodump"><userinput>systemctl disable dhcpcd@eth0</userinput></screen> 89 90 <para>To manually start the Network Interface configuration, 91 run:</para> 92 93 <screen role="nodump"><userinput>systemctl start dhcpcd@eth0</userinput></screen> 94 95 <para>Replace eth0 with the correct Network Interface 96 name as described on the beginning of this page.</para> 97 98 </sect2> 99 48 100 <sect2 id="contents-dhcpcd" role="content"> 49 101 <title>Contents of dhcpcd</title> -
BOOK/network/common/sysconfig-network.xml
rbf9148a r31e77c0 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 8 <sect1 id="ch-network-static"> 9 <?dbhtml filename="network-static.html"?> 10 11 <title>Static Networking Configuration</title> 12 13 <sect2> 14 <title>Creating the Static Network Interface Configuration Files</title> 15 16 <para>Which interfaces are brought up and down by the network script 17 depends on the files and directories in the <filename 18 class="directory">/etc/sysconfig</filename> hierarchy. 19 This directory should contain a sub-directory for each interface to be 20 configured, such as <filename>ifconfig.xyz</filename>, where 21 <quote>xyz</quote> is a network interface name. Inside this directory 22 would be files defining the attributes to this interface, such as its IP 23 address(es), subnet masks, and so forth.</para> 24 25 <note><para>Udev may assign random Network Card Interface names 26 for some network cards such as enp2s1. If you are not sure what 27 your Network Card Interface name is, you can always run 28 <command>ip l</command> after you have booted your system. Again, 29 it is important that <filename>ifconfig.xyz</filename> is named 30 after correct Network Card Interface name (e.g. 31 <filename>ifconfig.enp2s1</filename> or 32 <filename>ifconfig.eth0</filename>) or Systemd will fail to bring 33 up your network interface.</para></note> 34 35 <para>The following command creates a sample <filename>ipv4</filename> 36 file for the <emphasis>eth0</emphasis> device:</para> 37 38 <screen><userinput>mkdir -pv /etc/sysconfig && 39 cd /etc/sysconfig && 40 cat > ifconfig.eth0 << "EOF" 41 <literal>IFACE="eth0" 42 SERVICE="ipv4-static" 43 IP="192.168.1.1" 44 GATEWAY="192.168.1.2" 45 PREFIX="24" 46 BROADCAST="192.168.1.255"</literal> 47 EOF</userinput></screen> 48 49 <para os="var-ob">The values of these variables must be changed in every 50 file to match the proper setup.</para> 51 52 <para os="var-i">The <envar>IFACE</envar> variable defines the interface 53 name, for example, eth0. It is required for all network device configuration 54 files.</para> 55 56 <para os="var-s">The <envar>SERVICE</envar> variable defines the method used 57 for obtaining the IP address. The CLFS-Network-Scripts package has a modular 58 IP assignment format, and creating additional files in the <filename 59 class="directory">/lib/services</filename> 60 directory allows other IP assignment methods.</para> 61 62 <para>The <envar>GATEWAY</envar> variable should contain the default 63 gateway IP address, if one is present. If not, then comment out the 64 variable entirely.</para> 65 66 <para>The <envar>PREFIX</envar> variable needs to contain the number of 67 bits used in the subnet. Each octet in an IP address is 8 bits. If the 68 subnet's netmask is 255.255.255.0, then it is using the first three octets 69 (24 bits) to specify the network number. If the netmask is 255.255.255.240, 70 it would be using the first 28 bits. Prefixes longer than 24 bits are 71 commonly used by DSL and cable-based Internet Service Providers (ISPs). 72 In this example (PREFIX=24), the netmask is 255.255.255.0. Adjust the 73 <envar>PREFIX</envar> variable according to your specific subnet.</para> 74 75 <para>For more information see the <command>ifup</command> man page.</para> 76 77 <para>To configure another DHCP Interface, Follow <xref linkend="ch-network-dhcpcd"/>.</para> 78 79 </sect2> 80 81 <sect2> 82 <title>Configuring the Network Interface at boot</title> 83 84 <para>Enabling of the Network Interface configuration is 85 done per interface. To enable Network Interface 86 configuration at boot, run:</para> 87 88 <screen role="nodump"><userinput>systemctl enable ifupdown@eth0</userinput></screen> 89 90 <para>To disable previously enabled Network Interface 91 configuration at boot, run:</para> 92 93 <screen role="nodump"><userinput>systemctl disable ifupdown@eth0</userinput></screen> 94 95 <para>To manually start the Network Interface configuration, 96 run:</para> 97 98 <screen role="nodump"><userinput>systemctl start ifupdown@eth0</userinput></screen> 99 100 <para>Replace eth0 with the correct Network Interface 101 name as described on the beginning of this page.</para> 102 103 </sect2> 104 105 </sect1> -
BOOK/network/common/systemd-network.xml
rbf9148a r31e77c0 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 8 <sect1 id="ch-systemd-network"> 9 <?dbhtml filename="systemd-network.html"?> 10 11 <title>Networking Configuration with Systemd-networkd</title> 12 13 <sect2 role="static"> 14 <title>Creating the Static Network Interface Configuration Files</title> 15 16 <note><para>Udev may assign random Network Card Interface names 17 for some network cards such as enp2s1. If you are not sure what 18 your Network Card Interface name is, you can always run 19 <command>ip l</command> after you have booted your system. It is important that the <envar>Name</envar> variable in <filename>/etc/systemd/network</filename> contain the correct Network Card Interface name (e.g. 20 <envar>Name=enp2s1</envar> or 21 <envar>Name=eth0</envar>) or Systemd will fail to bring 22 up your network interface.</para></note> 23 24 <para><command>systemd-networkd</command> uses <filename>/etc/system/network</filename> for configuration files. Refer to systemd.network(5) and systemd.netdev(5). Configure a network interface with a config file. Adjust Name= as required:</para> 25 26 <screen><userinput>cd /etc/systemd/network && 27 cat > static.network << "EOF" 28 [Match] 29 Name=enp2s0 30 31 [Network] 32 Address=192.168.1.1/24 33 Gateway=192.168.1.2 34 EOF</userinput></screen> 35 36 <para os="var-ob">The values of these variables must be changed in every 37 file to match the proper setup.</para> 38 39 <para os="var-i">The <envar>Name</envar> variable defines the interface 40 name, for example, eth0. It is required for all network device configuration 41 files.</para> 42 43 <para>The <envar>Gateway</envar> variable should contain the default 44 gateway IP address, if one is present. If not, then comment out the 45 variable entirely.</para> 46 47 <para>For more information see the <command>systemd.netdev</command> man page.</para> 48 49 </sect2> 50 51 <sect2 role="dhcp"> 52 <title>Connecting to a network with DHCP</title> 53 54 <para><command>systemd-networkd</command> uses <filename>/etc/systemd/network</filename> for configuration files. Refer to <filename>systemd.network(5)</filename> and <filename>systemd.netdev(5)</filename>. Configure a network interface with a config file. Adjust Name= as required:</para> 55 56 <screen><userinput>cd /etc/systemd/network && 57 cat > dhcp.network << "EOF" 58 [Match] 59 Name=enp2s0 60 61 [Network] 62 DHCP=yes 63 EOF</userinput></screen> 64 65 <para><command>systemd-networkd</command> will automatically configure <filename>/run/systemd/network/resolv.conf</filename> when using DHCP. If you did not manually create <filename>/etc/resolv.conf</filename>, create a symlink:</para> 66 67 <screen><userinput>ln -sv /run/systemd/network/resolv.conf /etc</userinput></screen> 68 69 </sect2> 70 71 </sect1> -
BOOK/network/mips-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/mips64-64-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/mips64-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/multilib/dhcpcd.xml
rbf9148a r31e77c0 58 58 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 59 59 href="../common/dhcpcd.xml" 60 xpointer="xpointer(id('conf-dhcpcd'))"/> 61 62 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 63 href="../common/dhcpcd.xml" 60 64 xpointer="xpointer(id('contents-dhcpcd'))"/> 61 65 -
BOOK/network/ppc-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/ppc64-64-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/ppc64-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/sparc-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/sparc64-64-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/sparc64-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/x86-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/x86_64-64-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter> -
BOOK/network/x86_64-chapter.xml
rbf9148a r31e77c0 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/resolv.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/systemd-network.xml"/> 17 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/choose.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 20 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/dhcpcd.xml"/> 21 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/dhcp.xml"/>22 22 23 23 </chapter>
Note:
See TracChangeset
for help on using the changeset viewer.