Changeset 31e77c0 for BOOK/network


Ignore:
Timestamp:
Mar 30, 2014, 8:39:45 PM (10 years ago)
Author:
Chris Staub <chris@…>
Branches:
clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
6757dcab
Parents:
bf9148a
Message:

Updated network section

Location:
BOOK/network
Files:
2 deleted
18 edited

Legend:

Unmodified
Added
Removed
  • BOOK/network/alpha-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/common/choose.xml

    rbf9148a r31e77c0  
    99  <?dbhtml filename="choose.html"?>
    1010
    11   <title>DHCP or Static Networking?</title>
     11  <title>Systemd Networking?</title>
    1212
    1313  <indexterm zone="ch-network-choose">
     
    2424  responsible for setting up your options.</para>
    2525
    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>
    2727
    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>
    2929
    3030</sect1>
  • BOOK/network/common/dhcpcd.xml

    rbf9148a r31e77c0  
    4646  </sect2>
    4747
     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 &amp;&amp;
     59cat &gt; dhcpcd.conf &lt;&lt; "EOF"
     60<literal># dhcpcd configuration eth0 interface
     61# See dhcpcd.conf(5) for details.
     62
     63interface eth0
     64# dhcpcd-run-hooks uses these options.
     65option 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.
     69timeout 16</literal>
     70EOF</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
    48100  <sect2 id="contents-dhcpcd" role="content">
    49101    <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 &amp;&amp;
     39cd /etc/sysconfig &amp;&amp;
     40cat &gt; ifconfig.eth0 &lt;&lt; "EOF"
     41<literal>IFACE="eth0"
     42SERVICE="ipv4-static"
     43IP="192.168.1.1"
     44GATEWAY="192.168.1.2"
     45PREFIX="24"
     46BROADCAST="192.168.1.255"</literal>
     47EOF</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 &amp;&amp;
     27cat &gt; static.network &lt;&lt; "EOF"
     28[Match]
     29Name=enp2s0
     30
     31[Network]
     32Address=192.168.1.1/24
     33Gateway=192.168.1.2
     34EOF</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 &amp;&amp;
     57cat &gt; dhcp.network &lt;&lt; "EOF"
     58[Match]
     59Name=enp2s0
     60
     61[Network]
     62DHCP=yes
     63EOF</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  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/mips64-64-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/mips64-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/multilib/dhcpcd.xml

    rbf9148a r31e77c0  
    5858  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    5959  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"
    6064  xpointer="xpointer(id('contents-dhcpcd'))"/>
    6165
  • BOOK/network/ppc-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/ppc64-64-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/ppc64-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/sparc-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/sparc64-64-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/sparc64-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/x86-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/x86_64-64-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
  • BOOK/network/x86_64-chapter.xml

    rbf9148a r31e77c0  
    1515  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/hosts.xml"/>
    1616  <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"/>
    1719  <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"/>
    2021  <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"/>
    2222
    2323</chapter>
Note: See TracChangeset for help on using the changeset viewer.