Changes in / [6757dcab:ca8dde0]
- Location:
- BOOK
- Files:
-
- 2 added
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/introduction/common/changelog.xml
r6757dcab rca8dde0 41 41 <itemizedlist> 42 42 <listitem> 43 <para>[Chris] - Modified network section to split systemd/sysconfig44 network configurations.</para>45 </listitem>46 <listitem>47 43 <para>[Chris] - Removed instructions to install systemd manpages - 48 44 they are now automatically installed by default.</para> -
BOOK/network/alpha-chapter.xml
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 9 9 <?dbhtml filename="choose.html"?> 10 10 11 <title> SystemdNetworking?</title>11 <title>DHCP or Static 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 use systemd to configure a Network Interface, Follow <xref linkend="ch-systemd-network"/>.</para>26 <para>To configure a Static Interface, Follow <xref linkend="ch-network-static"/>.</para> 27 27 28 <para>To use CLFS-network-scripts to configure a Network Interface, Follow <xref linkend="ch-scripts-network-scripts"/>.</para>28 <para>To configure a DHCP Interface, Follow <xref linkend="ch-network-dhcpcd"/>.</para> 29 29 30 30 </sect1> -
BOOK/network/common/dhcpcd.xml
r6757dcab rca8dde0 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 the52 dhcpcd.conf man page for more information. This step may be skipped if53 default behavior of dhcpcd is required.</para>54 55 <para>Create the <filename>/etc/dhcpcd.conf</filename> configuration file56 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 interface61 # See dhcpcd.conf(5) for details.62 63 interface eth064 # dhcpcd-run-hooks uses these options.65 option subnet_mask, routers, domain_name_servers66 67 # The default timeout for waiting for a DHCP response is 30 seconds68 # 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 is80 done per interface. To enable Network Interface81 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 Interface86 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 Interface96 name as described on the beginning of this page.</para>97 98 </sect2>99 100 48 <sect2 id="contents-dhcpcd" role="content"> 101 49 <title>Contents of dhcpcd</title> -
BOOK/network/common/sysconfig-network.xml
r6757dcab rca8dde0 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 script17 depends on the files and directories in the <filename18 class="directory">/etc/sysconfig</filename> hierarchy.19 This directory should contain a sub-directory for each interface to be20 configured, such as <filename>ifconfig.xyz</filename>, where21 <quote>xyz</quote> is a network interface name. Inside this directory22 would be files defining the attributes to this interface, such as its IP23 address(es), subnet masks, and so forth.</para>24 25 <note><para>Udev may assign random Network Card Interface names26 for some network cards such as enp2s1. If you are not sure what27 your Network Card Interface name is, you can always run28 <command>ip l</command> after you have booted your system. Again,29 it is important that <filename>ifconfig.xyz</filename> is named30 after correct Network Card Interface name (e.g.31 <filename>ifconfig.enp2s1</filename> or32 <filename>ifconfig.eth0</filename>) or Systemd will fail to bring33 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 every50 file to match the proper setup.</para>51 52 <para os="var-i">The <envar>IFACE</envar> variable defines the interface53 name, for example, eth0. It is required for all network device configuration54 files.</para>55 56 <para os="var-s">The <envar>SERVICE</envar> variable defines the method used57 for obtaining the IP address. The CLFS-Network-Scripts package has a modular58 IP assignment format, and creating additional files in the <filename59 class="directory">/lib/services</filename>60 directory allows other IP assignment methods.</para>61 62 <para>The <envar>GATEWAY</envar> variable should contain the default63 gateway IP address, if one is present. If not, then comment out the64 variable entirely.</para>65 66 <para>The <envar>PREFIX</envar> variable needs to contain the number of67 bits used in the subnet. Each octet in an IP address is 8 bits. If the68 subnet's netmask is 255.255.255.0, then it is using the first three octets69 (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 are71 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 the73 <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 is85 done per interface. To enable Network Interface86 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 Interface91 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 Interface101 name as described on the beginning of this page.</para>102 103 </sect2>104 105 </sect1> -
BOOK/network/common/systemd-network.xml
r6757dcab rca8dde0 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 names17 for some network cards such as enp2s1. If you are not sure what18 your Network Card Interface name is, you can always run19 <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> or21 <envar>Name=eth0</envar>) or Systemd will fail to bring22 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=enp2s030 31 [Network]32 Address=192.168.1.1/2433 Gateway=192.168.1.234 EOF</userinput></screen>35 36 <para os="var-ob">The values of these variables must be changed in every37 file to match the proper setup.</para>38 39 <para os="var-i">The <envar>Name</envar> variable defines the interface40 name, for example, eth0. It is required for all network device configuration41 files.</para>42 43 <para>The <envar>Gateway</envar> variable should contain the default44 gateway IP address, if one is present. If not, then comment out the45 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=enp2s060 61 [Network]62 DHCP=yes63 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
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 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"64 60 xpointer="xpointer(id('contents-dhcpcd'))"/> 65 61 -
BOOK/network/ppc-chapter.xml
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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
r6757dcab rca8dde0 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/network-scripts.xml"/> 17 18 <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"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/network-scripts.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/sysconfig-network.xml"/> 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/static.xml"/> 21 20 <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.