1 .\" Copyright (c) 1983, 1989, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
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. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)rshd.8 8.1 (Berkeley) 6/4/93
33 .\" $FreeBSD: src/libexec/rshd/rshd.8,v 1.18.2.5 2001/08/16 10:44:18 ru Exp $
34 .\" $DragonFly: src/libexec/rshd/rshd.8,v 1.4 2006/02/17 19:33:31 swildner Exp $
41 .Nd remote shell server
51 routine and, consequently, for the
53 program. The server provides remote execution facilities
54 with authentication based on privileged port numbers from trusted hosts.
59 listens for service requests at the port indicated in
62 service specification; see
64 When a service request is received the following protocol
68 The server checks the client's source port.
69 If the port is not in the range 512-1023, the server
70 aborts the connection.
72 The server reads characters from the socket up
75 (`\e0') byte. The resultant string is
80 If the number received in step 2 is non-zero,
81 it is interpreted as the port number of a secondary
82 stream to be used for the
84 A second connection is then created to the specified
85 port on the client's machine. The source port of this
86 second connection is also in the range 512-1023.
88 The server checks the client's source address
89 and requests the corresponding host name (see
94 If the hostname cannot be determined or the hostname and address do
95 not match after verification,
96 the dot-notation representation of the host address is used.
98 A null terminated user name of at most 16 characters
99 is retrieved on the initial socket. This user name
100 is interpreted as the user identity on the
104 A null terminated user name of at most 16 characters
105 is retrieved on the initial socket. This user name
106 is interpreted as a user identity to use on the
110 A null terminated command to be passed to a
111 shell is retrieved on the initial socket. The length of
112 the command is limited by the upper bound on the size of
113 the system's argument list.
116 then validates the user using
122 file found in the user's home directory. The
126 from doing any validation based on the user's
129 unless the user is the superuser.
133 exists and the user is not the superuser,
134 the connection is closed.
135 The name of the nologin file may be overridden
136 using the nologin capability in
138 according to the local user's login class,
139 which may also be used to restrict
142 login time (times.allow and times.deny capabilities)
143 and remote host (hosts.allow and hosts.deny capabilities).
147 byte is returned on the initial socket
148 and the command line is passed to the normal login
149 shell of the user. The
150 shell inherits the network connections established
155 The options are as follows:
156 .Bl -tag -width indent
158 Display the usage message, and exit.
160 Sets the TCP_NODELAY socket option, which improves the performance
161 of small back-to-back writes at the expense of additional network
164 Causes all successful accesses to be logged to
170 This flag is ignored, and is present for compatibility purposes.
172 Do not use the user's
174 file for authentication, unless the user is the superuser.
176 Turn off transport level keepalive messages. This will prevent sessions
177 from timing out if the client crashes or becomes unreachable.
180 .Bl -tag -width /var/run/nologin -compact
182 .It Pa /etc/hosts.equiv
183 .It Pa /etc/login.conf
184 .It Ev $HOME Ns Pa /.rhosts
185 .It Pa /var/run/nologin
188 Except for the last one listed below,
189 all diagnostic messages
190 are returned on the initial socket,
191 after which any network connections are closed.
192 An error is indicated by a leading byte with a value of
193 1 (0 is returned in step 10 above upon successful completion
194 of all the steps prior to the execution of the login shell).
195 .Bl -tag -width indent
196 .It Sy Locuser too long.
197 The name of the user on the client's machine is
198 longer than 16 characters.
199 .It Sy Ruser too long.
200 The name of the user on the remote machine is
201 longer than 16 characters.
202 .It Sy Command too long.
203 The command line passed exceeds the size of the argument
204 list (as configured into the system).
205 .It Sy Login incorrect.
206 No password file entry for the user name existed
207 or the authentication procedure described above failed.
208 .It Sy Remote directory.
211 function to the home directory failed.
212 .It Sy Logins not available right now.
214 was attempted outside the allowed hours defined in
216 for the local user's login class.
217 .It Sy Can't make pipe.
218 The pipe needed for the
221 .It Sy Can't fork; try again.
224 by the server failed.
225 .It Sy <shellname>: ...
226 The user's login shell could not be started. This message is returned
227 on the connection associated with the
229 and is not preceded by a flag byte.
234 .Xr gethostbyaddr 3 ,
247 IPv6 support was added by WIDE/KAME project.
249 The authentication procedure used here assumes the integrity
250 of each client machine and the connecting medium. This is
251 insecure, but is useful in an
255 A facility to allow all data exchanges to be encrypted should be
258 A more extensible protocol (such as Telnet) should be used.