1 .\" $NetBSD: hostname.7,v 1.8 2000/03/24 22:48:33 enami Exp $
3 .\" Copyright (c) 1987, 1990, 1993
4 .\" The Regents of the University of California. All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the University nor the names of its contributors
15 .\" may be used to endorse or promote products derived from this software
16 .\" without specific prior written permission.
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" @(#)hostname.7 8.2 (Berkeley) 12/30/93
37 .Nd host name resolution description
39 Hostnames are domains, where a domain is a hierarchical, dot-separated
40 list of subdomains; for example, the machine monet, in the Berkeley
41 subdomain of the EDU subdomain of the Internet would be represented as
43 .Dl monet.Berkeley.EDU
45 (with no trailing dot).
47 Hostnames are often used with network client and server programs,
48 which must generally translate the name to an address for use.
49 (This function is generally performed by the library routine
50 .Xr gethostbyname 3 . )
51 Hostnames are resolved by the Internet name resolver in the following
54 If the name consists of a single component, i.e. contains no dot,
55 and if the environment variable
57 is set to the name of a file,
58 that file is searched for any string matching the input hostname.
59 The file should consist of lines made up of two white-space separated strings,
60 the first of which is the hostname alias,
61 and the second of which is the complete hostname
62 to be substituted for that alias.
63 If a case-insensitive match is found between the hostname to be resolved
64 and the first field of a line in the file, the substituted name is looked
65 up with no further processing.
67 If the input name ends with a trailing dot,
68 the trailing dot is removed,
69 and the remaining name is looked up with no further processing.
71 If the input name does not end with a trailing dot, it is looked up
72 by searching through a list of domains until a match is found.
73 The default search list includes first the local domain,
74 then its parent domains with at least 2 name components (longest first).
76 in the domain CS.Berkeley.EDU, the name lithium.CChem will be checked first
77 as lithium.CChem.CS.Berkeley.EDU and then as lithium.CChem.Berkeley.EDU.
78 Lithium.CChem.EDU will not be tried, as there is only one component
79 remaining from the local domain.
80 The search path can be changed from the default
81 by a system-wide configuration file (see