Ticket #1663: lfs-svn-fix-ip-address-table.patch

File lfs-svn-fix-ip-address-table.patch, 1.6 KB (added by bryan@linuxfromscratch.org, 18 years ago)

Patch to update the IP address table, and make its explanation make more sense

  • chapter07/hosts.xml

     
    3434  address is in the private network IP address range. Valid ranges
    3535  are:</para>
    3636
    37 <screen><literal>       Class Networks
    38         A     10.0.0.0
    39         B     172.16.0.0 through 172.31.0.255
    40         C     192.168.0.0 through 192.168.255.255</literal></screen>
     37<screen><literal>       Class   First Network   Count   Last Network
     38        A       10.0.0.0/8      1       10.0.0.0/8
     39        B       172.16.0.0/16   16      172.31.0.0/16
     40        C       192.168.0.0/24  256     192.168.255.0/24</literal></screen>
    4141
    42   <para>A valid IP address could be 192.168.1.1. A valid FQDN for this
     42  <para>This table uses CIDR notation. If you don't know how to
     43  interpret CIDR network descriptions, then one good explanation
     44  can be found on <ulink url="http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing">Wikipedia's
     45  CIDR page</ulink>.  Others can no doubt be found at the end of
     46  Google searches.</para>
     47
     48  <para>Note that there are 16 different possible /16 private networks,
     49  and 256 possible /24 private networks. Each of these networks is
     50  still conventionally a /16 or a /24 network, though; creating a
     51  192.168.0.0/16 network, while possible, is not recommended. The
     52  reason is that historically, addresses starting with 192 denoted
     53  Class C networks.</para>
     54
     55  <para>A valid private IP address could be 192.168.1.1. A valid FQDN for this
    4356  IP could be www.linuxfromscratch.org (not recommended because this is
    4457  a valid registered domain address and could cause domain name server
    4558  issues).</para>