OSDN Git Service

Update README
[linuxjm/LDP_man-pages.git] / original / man7 / hostname.7
1 .\" Copyright (c) 1987, 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" %%%LICENSE_START(BSD_4_CLAUSE_UCB)
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" 3. All advertising materials mentioning features or use of this software
14 .\"    must display the following acknowledgement:
15 .\"     This product includes software developed by the University of
16 .\"     California, Berkeley and its contributors.
17 .\" 4. Neither the name of the University nor the names of its contributors
18 .\"    may be used to endorse or promote products derived from this software
19 .\"    without specific prior written permission.
20 .\"
21 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 .\" SUCH DAMAGE.
32 .\" %%%LICENSE_END
33 .\"
34 .\"     @(#)hostname.7  8.2 (Berkeley) 12/30/93
35 .\" $FreeBSD: src/share/man/man7/hostname.7,v 1.7 2004/07/03 18:29:23 ru Exp $
36 .\"
37 .\" 2008-06-11, mtk, Taken from FreeBSD 6.2 and modified for Linux.
38 .\"
39 .TH HOSTNAME 7 2010-11-07 "Linux" "Linux Programmer's Manual"
40 .SH NAME
41 hostname \- hostname resolution description
42 .SH DESCRIPTION
43 Hostnames are domains, where a domain is a hierarchical, dot-separated
44 list of subdomains; for example, the machine monet, in the Berkeley
45 subdomain of the EDU domain would be represented as "monet.Berkeley.EDU".
46
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 task is generally performed by either
50 .BR getaddrinfo (3)
51 or the obsolete
52 .BR gethostbyname (3).)
53 Hostnames are resolved by the Internet name resolver in the following
54 fashion.
55
56 If the name consists of a single component, that is, contains no dot,
57 and if the environment variable
58 .B HOSTALIASES
59 is set to the name of a file,
60 that file is searched for any string matching the input hostname.
61 The file should consist of lines made up of two white-space separated strings,
62 the first of which is the hostname alias,
63 and the second of which is the complete hostname
64 to be substituted for that alias.
65 If a case-insensitive match is found between the hostname to be resolved
66 and the first field of a line in the file, the substituted name is looked
67 up with no further processing.
68
69 If the input name ends with a trailing dot,
70 the trailing dot is removed,
71 and the remaining name is looked up with no further processing.
72
73 If the input name does not end with a trailing dot, it is looked up
74 by searching through a list of domains until a match is found.
75 The default search list includes first the local domain,
76 then its parent domains with at least 2 name components (longest first).
77 For example,
78 in the domain CS.Berkeley.EDU, the name lithium.CChem will be checked first
79 as lithium.CChem.CS.Berkeley.EDU and then as lithium.CChem.Berkeley.EDU.
80 Lithium.CChem.EDU will not be tried, as there is only one component
81 remaining from the local domain.
82 The search path can be changed from the default
83 by a system-wide configuration file (see
84 .BR resolver (5)).
85 .SH SEE ALSO
86 .BR gethostbyname (3),
87 .BR resolver (5),
88 .BR mailaddr (7),
89 .BR named (8)
90 .\" .SH HISTORY
91 .\" Hostname appeared in
92 .\" 4.2BSD.
93 .SH COLOPHON
94 This page is part of release 3.79 of the Linux
95 .I man-pages
96 project.
97 A description of the project,
98 information about reporting bugs,
99 and the latest version of this page,
100 can be found at
101 \%http://www.kernel.org/doc/man\-pages/.