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
RevLine 
[673b0d8]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]>
[3be4d97]6<sect1 id="ch-scripts-hosts">
[b08f409]7<title>Creating the /etc/hosts file</title>
[673b0d8]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>
[b08f409]19
[fa914e5]20<para>If a network card is to be configured, you have to decide on the
[f67f5cf]21IP-address, FQDN and possible aliases for use in the <filename>/etc/hosts</filename> file. The
[9762eb7]22syntax is:</para>
[b822811]23
[0afaac4]24<screen>&lt;IP address&gt; myhost.example.org aliases</screen>
[b822811]25
[f67f5cf]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
[b822811]29IP-address range. Valid ranges are:</para>
30
[21ba4e3]31<screen> Class Networks
[b08f409]32 A 10.0.0.0
33 B 172.16.0.0 through 172.31.0.0
[21ba4e3]34 C 192.168.0.0 through 192.168.255.0</screen>
[b822811]35
36<para>A valid IP address could be 192.168.1.1. A valid FQDN for this IP could
[f67f5cf]37be www.linuxfromscratch.org (not recommended as this is a valid registered domain
38address and could cause your domain name server problems).</para>
[b822811]39
[fa914e5]40<para>If you aren't going to use a network card, you still need to
[9762eb7]41come up with a FQDN. This is necessary for certain programs to operate
42correctly.</para>
[b822811]43
[9762eb7]44<para>If a network card is not going to be configured, create the
45<filename>/etc/hosts</filename> file by running:</para>
[b822811]46
[f67f5cf]47<screen><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"
[b08f409]48# Begin /etc/hosts (no network card version)
49
[f67f5cf]50127.0.0.1 <replaceable>[&lt;value of HOSTNAME&gt;.example.org]</replaceable> <replaceable>[value of HOSTNAME]</replaceable> localhost
[b08f409]51
52# End /etc/hosts (no network card version)
[f67f5cf]53EOF</userinput></screen>
[b822811]54
[9762eb7]55<para>If a network card is to be configured, create the
56<filename>/etc/hosts</filename> file by running:</para>
[b822811]57
[f67f5cf]58<screen><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"
[b08f409]59# Begin /etc/hosts (network card version)
60
[0afaac4]61127.0.0.1 localhost
[f67f5cf]62<replaceable>[192.168.1.1]</replaceable> <replaceable>[&lt;value of HOSTNAME&gt;.example.org]</replaceable> <replaceable>[value of HOSTNAME]</replaceable>
[b08f409]63
64# End /etc/hosts (network card version)
[f67f5cf]65EOF</userinput></screen>
[b08f409]66
[f67f5cf]67<para>Of course, the <replaceable>[192.168.1.1]</replaceable> and <replaceable>[&lt;value of HOSTNAME&gt;.example.org]</replaceable>
[140190c0]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>
[b08f409]71
72</sect1>
Note: See TracBrowser for help on using the repository browser.