]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man7/hostname.7
sock_diag.7: More minor fixes to Dmitry's patch
[thirdparty/man-pages.git] / man7 / hostname.7
CommitLineData
06b00cff
MK
1.\" Copyright (c) 1987, 1990, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
a9cd9cb7 4.\" %%%LICENSE_START(BSD_4_CLAUSE_UCB)
06b00cff
MK
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.
8c9302dc 32.\" %%%LICENSE_END
06b00cff
MK
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.\"
474c44f3 39.TH HOSTNAME 7 2010-11-07 "Linux" "Linux Programmer's Manual"
06b00cff 40.SH NAME
ddaec46d 41hostname \- hostname resolution description
06b00cff
MK
42.SH DESCRIPTION
43Hostnames are domains, where a domain is a hierarchical, dot-separated
44list of subdomains; for example, the machine monet, in the Berkeley
474c44f3 45subdomain of the EDU domain would be represented as "monet.Berkeley.EDU".
06b00cff
MK
46
47Hostnames are often used with network client and server programs,
48which must generally translate the name to an address for use.
49(This task is generally performed by either
50.BR getaddrinfo (3)
51or the obsolete
52.BR gethostbyname (3).)
53Hostnames are resolved by the Internet name resolver in the following
54fashion.
55
56If the name consists of a single component, that is, contains no dot,
57and if the environment variable
58.B HOSTALIASES
59is set to the name of a file,
60that file is searched for any string matching the input hostname.
61The file should consist of lines made up of two white-space separated strings,
62the first of which is the hostname alias,
63and the second of which is the complete hostname
64to be substituted for that alias.
65If a case-insensitive match is found between the hostname to be resolved
66and the first field of a line in the file, the substituted name is looked
67up with no further processing.
68
69If the input name ends with a trailing dot,
70the trailing dot is removed,
71and the remaining name is looked up with no further processing.
72
73If the input name does not end with a trailing dot, it is looked up
74by searching through a list of domains until a match is found.
75The default search list includes first the local domain,
76then its parent domains with at least 2 name components (longest first).
77For example,
78in the domain CS.Berkeley.EDU, the name lithium.CChem will be checked first
79as lithium.CChem.CS.Berkeley.EDU and then as lithium.CChem.Berkeley.EDU.
80Lithium.CChem.EDU will not be tried, as there is only one component
81remaining from the local domain.
82The search path can be changed from the default
83by 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.