Correct BSD License clause numbering from 1-2-4 to 1-2-3.
[dragonfly.git] / share / man / man5 / hosts.equiv.5
1 .\" Copyright (c) 1983, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\" $FreeBSD: src/share/man/man5/hosts.equiv.5,v 1.10.2.6 2002/02/01 15:51:18 ru Exp $
29 .\" $DragonFly: src/share/man/man5/hosts.equiv.5,v 1.3 2006/08/18 01:42:58 swildner Exp $
30 .\"
31 .Dd February 11, 1996
32 .Dt HOSTS.EQUIV 5
33 .Os
34 .Sh NAME
35 .Nm hosts.equiv ,
36 .Nm .rhosts
37 .Nd trusted remote host and user name data base
38 .Sh DESCRIPTION
39 The
40 .Nm
41 and
42 .Nm .rhosts
43 files contain information regarding
44 trusted hosts and users on the network.
45 For each host a single line should be present
46 with the following information:
47 .Pp
48 simple
49 .Bd -unfilled -offset indent
50 hostname [username]
51 .Ed
52 .Pp
53 or the more verbose
54 .Bd -unfilled -offset indent
55 [+-][hostname|@netgroup] [[+-][username|@netgroup]]
56 .Ed
57 .Pp
58 A
59 .Dq @
60 indicates a host by netgroup or user by netgroup.
61 A single
62 .Dq +
63 matches all hosts or users.  A host name with a leading
64 .Dq -
65 will reject
66 all matching hosts and all their users.
67 A user name with leading
68 .Dq -
69 will reject all matching users from matching hosts.
70 .Pp
71 Items are separated by any number of blanks and/or
72 tab characters.  A
73 .Dq #
74 indicates the beginning of
75 a comment; characters up to the end of the line are
76 not interpreted by routines which search the file.
77 .Pp
78 Host names are specified in the conventional
79 .Dq .\&
80 (dot) notation using the
81 .Xr inet_addr 3
82 routine
83 from the Internet address manipulation library,
84 .Xr inet 3 .
85 Host names may contain any printable
86 character other than a field delimiter, newline,
87 or comment character.
88 .Pp
89 For security reasons, a user's
90 .Nm .rhosts
91 file will be ignored if it is not a regular file, or if it
92 is not owned by the user, or
93 if it is writable by anyone other than the user.
94 .Sh FILES
95 .Bl -tag -width /etc/hosts.equivxxx -compact
96 .It Pa /etc/hosts.equiv
97 The
98 .Nm
99 file resides in
100 .Pa /etc .
101 .It Pa $HOME/.rhosts
102 .Nm .rhosts
103 file resides in
104 .Pa $HOME .
105 .El
106 .Sh EXAMPLES
107 .Dl bar.com foo
108 .Pp
109 Trust user
110 .Dq foo
111 from host
112 .Dq bar.com .
113 .Pp
114 .Dl +@allclient
115 .Pp
116 Trust all hosts from netgroup
117 .Dq allclient .
118 .Pp
119 .Dl +@allclient -@dau
120 .Pp
121 Trust all hosts from netgroup
122 .Dq allclient
123 and their users
124 except users from netgroup
125 .Dq dau .
126 .Sh SEE ALSO
127 .Xr rcp 1 ,
128 .Xr rlogin 1 ,
129 .Xr rsh 1 ,
130 .Xr gethostbyname 3 ,
131 .Xr inet 3 ,
132 .Xr innetgr 3 ,
133 .Xr ruserok 3 ,
134 .Xr ifconfig 8 ,
135 .Xr named 8 ,
136 .Xr yp 8
137 .Sh BUGS
138 This man page is incomplete.
139 For more information read
140 the source in
141 .Pa src/lib/libc/net/rcmd.c
142 or the SunOS man page.