xref: /dragonfly/share/man/man5/hosts.equiv.5 (revision 279dd846)
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
39The
40.Nm
41and
42.Nm .rhosts
43files contain information regarding
44trusted hosts and users on the network.
45For each host a single line should be present
46with the following information:
47.Pp
48simple
49.Bd -unfilled -offset indent
50hostname [username]
51.Ed
52.Pp
53or the more verbose
54.Bd -unfilled -offset indent
55[+-][hostname|@netgroup] [[+-][username|@netgroup]]
56.Ed
57.Pp
58A
59.Dq @
60indicates a host by netgroup or user by netgroup.
61A single
62.Dq +
63matches all hosts or users.  A host name with a leading
64.Dq -
65will reject
66all matching hosts and all their users.
67A user name with leading
68.Dq -
69will reject all matching users from matching hosts.
70.Pp
71Items are separated by any number of blanks and/or
72tab characters.  A
73.Dq #
74indicates the beginning of
75a comment; characters up to the end of the line are
76not interpreted by routines which search the file.
77.Pp
78Host names are specified in the conventional
79.Dq .\&
80(dot) notation using the
81.Xr inet_addr 3
82routine
83from the Internet address manipulation library,
84.Xr inet 3 .
85Host names may contain any printable
86character other than a field delimiter, newline,
87or comment character.
88.Pp
89For security reasons, a user's
90.Nm .rhosts
91file will be ignored if it is not a regular file, or if it
92is not owned by the user, or
93if 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
97The
98.Nm
99file resides in
100.Pa /etc .
101.It Pa $HOME/.rhosts
102.Nm .rhosts
103file resides in
104.Pa $HOME .
105.El
106.Sh EXAMPLES
107.Dl bar.com foo
108.Pp
109Trust user
110.Dq foo
111from host
112.Dq bar.com .
113.Pp
114.Dl +@allclient
115.Pp
116Trust all hosts from netgroup
117.Dq allclient .
118.Pp
119.Dl +@allclient -@dau
120.Pp
121Trust all hosts from netgroup
122.Dq allclient
123and their users
124except 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
138This man page is incomplete.
139For more information read
140the source in
141.Pa src/lib/libc/net/rcmd.c
142or the SunOS man page.
143