Changeset bd4a1d9


Ignore:
Timestamp:
03/08/2017 12:47:35 AM (7 years ago)
Author:
DJ Lucas <dj@…>
Branches:
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, 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
Children:
ac11646
Parents:
945b760
Message:

Update /etc/hosts in network configuration.

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r945b760 rbd4a1d9  
    4343    appropriate for the entry or if needed the entire day's listitem.
    4444-->
     45    <listitem>
     46      <para>2017-03-08</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[dj] - Update /etc/hosts in network configuration.</para>
     50        </listitem>
     51      </itemizedlist>
     52    </listitem>
     53
    4554    <listitem>
    4655      <para>2017-03-03</para>
  • chapter07/network.xml

    r945b760 rbd4a1d9  
    268268
    269269127.0.0.1 localhost
    270 <replaceable>&lt;192.168.1.1&gt;</replaceable> <replaceable>&lt;HOSTNAME.example.org&gt;</replaceable> <replaceable>[alias1] [alias2 ...]</replaceable>
     270127.0.1.1 <replaceable>&lt;FQDN&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable>
     271<replaceable>&lt;192.168.1.1&gt;</replaceable> <replaceable>&lt;FQDN&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable> <replaceable>[alias1] [alias2 ...]</replaceable>
     272::1       localhost ip6-localhost ip6-loopback
     273ff02::1   ip6-allnodes
     274ff02::2   ip6-allrouters
    271275
    272276# End /etc/hosts (network card version)</literal>
    273277EOF</userinput></screen>
    274278
    275      <para>The <replaceable>&lt;192.168.1.1&gt;</replaceable> and
    276      <replaceable>&lt;HOSTNAME.example.org&gt;</replaceable> values need to be
     279     <para>The <replaceable>&lt;192.168.1.1&gt;</replaceable>,
     280     <replaceable>&lt;FQDN&gt;</replaceable>, and
     281     <replaceable>&lt;HOSTNAME&gt;</replaceable> values need to be
    277282     changed for specific uses or requirements (if assigned an IP address by a
    278283     network/system administrator and the machine will be connected to an
     
    285290<literal># Begin /etc/hosts (no network card version)
    286291
    287 127.0.0.1 <replaceable>&lt;HOSTNAME.example.org&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable> localhost
     292127.0.0.1 localhost
     293127.0.1.1 <replaceable>&lt;FQDN&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable>
     294::1       localhost ip6-localhost ip6-loopback
     295ff02::1   ip6-allnodes
     296ff02::2   ip6-allrouters
    288297
    289298# End /etc/hosts (no network card version)</literal>
  • chapter07/networkd.xml

    r945b760 rbd4a1d9  
    238238<literal># Begin /etc/hosts
    239239
    240 127.0.0.1 <replaceable>&lt;HOSTNAME.example.org&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable> localhost <replaceable>[alias1] [alias2] ...</replaceable>
    241 ::1       <replaceable>&lt;HOSTNAME.example.org&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable> localhost <replaceable>[alias1] [alias2] ...</replaceable>
     240127.0.0.1 localhost
     241127.0.1.1 <replaceable>&lt;FQDN&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable>
     242::1       localhost ip6-localhost ip6-loopback
     243ff02::1   ip6-allnodes
     244ff02::2   ip6-allrouters
    242245
    243246# End /etc/hosts</literal>
     
    245248
    246249     <para>The ::1 entry is the IPv6 counterpart of 127.0.0.1 and represents
    247 the IPv6 loopback interface.</para>
     250     the IPv6 loopback interface. 127.0.1.1 is a loopback entry reserved
     251     specifically for the FQDN.</para>
    248252
    249253     <para>If using a static address, create the <filename>/etc/hosts</filename>
     
    254258
    255259127.0.0.1 localhost
    256 ::1       localhost
    257 <replaceable>&lt;192.168.0.2&gt;</replaceable> <replaceable>&lt;HOSTNAME.example.org&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable> <replaceable>[alias1] [alias2] ...</replaceable>
     260127.0.1.1 <replaceable>&lt;FQDN&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable>
     261<replaceable>&lt;192.168.0.2&gt;</replaceable> <replaceable>&lt;FQDN&gt;</replaceable> <replaceable>&lt;HOSTNAME&gt;</replaceable> <replaceable>[alias1] [alias2] ...</replaceable>
     262::1       localhost ip6-localhost ip6-loopback
     263ff02::1   ip6-allnodes
     264ff02::2   ip6-allrouters
    258265
    259266# End /etc/hosts</literal>
     
    261268
    262269     <para>The <replaceable>&lt;192.168.0.2&gt;</replaceable>,
    263      <replaceable>&lt;HOSTNAME.example.org&gt;</replaceable>, and
     270     <replaceable>&lt;FQDN&gt;</replaceable>, and
    264271     <replaceable>&lt;HOSTNAME&gt;</replaceable> values need to be
    265272     changed for specific uses or requirements (if assigned an IP address by a
  • general.ent

    r945b760 rbd4a1d9  
    1 <!ENTITY version         "SVN-20170303">
     1<!ENTITY version         "SVN-20170308">
    22<!ENTITY short-version   "svn">  <!-- Used below in &blfs-book;
    33                                      Change to x.y for release but not -rc releases -->
    44<!ENTITY generic-version "development"> <!-- Use "development"  or "x.y[-pre{x}]" -->
    55
    6 <!ENTITY versiond        "20170303-systemd">
     6<!ENTITY versiond        "20170308-systemd">
    77<!ENTITY short-versiond  "systemd">
    88<!ENTITY generic-versiond "systemd">
    99
    10 <!ENTITY releasedate     "March 3, 2017">
     10<!ENTITY releasedate     "March 8, 2017">
    1111
    1212<!ENTITY copyrightdate   "1999-2017"><!-- jhalfs needs a literal dash, not &ndash; -->
Note: See TracChangeset for help on using the changeset viewer.