source: chapter07/hosts.xml@ 6aaa1b0

6.0
Last change on this file since 6aaa1b0 was f67f5cf, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

Tags corrections

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

  • Property mode set to 100644
File size: 2.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-scripts-hosts">
7<title>Creating the /etc/hosts file</title>
8<?dbhtml filename="hosts.html"?>
9
10<indexterm zone="ch-scripts-hosts"><primary sortas="e-/etc/hosts">/etc/hosts</primary></indexterm>
11
12<indexterm zone="ch-scripts-hosts">
13<primary sortas="d-localnet">localnet</primary>
14<secondary>/etc/hosts</secondary></indexterm>
15
16<indexterm zone="ch-scripts-hosts">
17<primary sortas="d-network">network</primary>
18<secondary>/etc/hosts</secondary></indexterm>
19
20<para>If a network card is to be configured, you have to decide on the
21IP-address, FQDN and possible aliases for use in the <filename>/etc/hosts</filename> file. The
22syntax is:</para>
23
24<screen>&lt;IP address&gt; myhost.example.org aliases</screen>
25
26<para>Unless your computer is to be visible to the Internet (e.g., you have a
27registered domain and a valid block of assigned IP addresses - most of us don't
28have this) you should make sure that the IP-address is in the private network
29IP-address range. Valid ranges are:</para>
30
31<screen> Class Networks
32 A 10.0.0.0
33 B 172.16.0.0 through 172.31.0.0
34 C 192.168.0.0 through 192.168.255.0</screen>
35
36<para>A valid IP address could be 192.168.1.1. A valid FQDN for this IP could
37be www.linuxfromscratch.org (not recommended as this is a valid registered domain
38address and could cause your domain name server problems).</para>
39
40<para>If you aren't going to use a network card, you still need to
41come up with a FQDN. This is necessary for certain programs to operate
42correctly.</para>
43
44<para>If a network card is not going to be configured, create the
45<filename>/etc/hosts</filename> file by running:</para>
46
47<screen><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"
48# Begin /etc/hosts (no network card version)
49
50127.0.0.1 <replaceable>[&lt;value of HOSTNAME&gt;.example.org]</replaceable> <replaceable>[value of HOSTNAME]</replaceable> localhost
51
52# End /etc/hosts (no network card version)
53EOF</userinput></screen>
54
55<para>If a network card is to be configured, create the
56<filename>/etc/hosts</filename> file by running:</para>
57
58<screen><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"
59# Begin /etc/hosts (network card version)
60
61127.0.0.1 localhost
62<replaceable>[192.168.1.1]</replaceable> <replaceable>[&lt;value of HOSTNAME&gt;.example.org]</replaceable> <replaceable>[value of HOSTNAME]</replaceable>
63
64# End /etc/hosts (network card version)
65EOF</userinput></screen>
66
67<para>Of course, the <replaceable>[192.168.1.1]</replaceable> and <replaceable>[&lt;value of HOSTNAME&gt;.example.org]</replaceable>
68have to be changed to your liking (or requirements if assigned an IP-address
69by a network/system administrator and this machine is planned to be connected
70to an existing network).</para>
71
72</sect1>
Note: See TracBrowser for help on using the repository browser.