]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - libexec/rlogind/rlogind.8
MFC: r262136
[FreeBSD/stable/10.git] / libexec / rlogind / rlogind.8
1 .\" Copyright (c) 1983, 1989, 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 .\"     @(#)rlogind.8   8.1 (Berkeley) 6/4/93
29 .\" $FreeBSD$
30 .\"
31 .Dd February 9, 2005
32 .Dt RLOGIND 8
33 .Os
34 .Sh NAME
35 .Nm rlogind
36 .Nd remote login server
37 .Sh SYNOPSIS
38 .Nm
39 .Op Fl Daln
40 .Sh DESCRIPTION
41 The
42 .Nm
43 utility is the server for the
44 .Xr rlogin 1
45 program.
46 The server provides a remote login facility
47 with authentication based on privileged port numbers from trusted hosts.
48 .Pp
49 Options supported by
50 .Nm :
51 .Bl -tag -width indent
52 .It Fl D
53 Set TCP_NODELAY socket option.
54 This improves responsiveness at the expense of
55 some additional network traffic.
56 .It Fl a
57 Ask hostname for verification.
58 .It Fl l
59 Prevent any authentication based on the user's
60 .Dq Pa .rhosts
61 file, unless the user is logging in as the superuser.
62 .It Fl n
63 Disable keep-alive messages.
64 .El
65 .Pp
66 The
67 .Nm
68 utility listens for service requests at the port indicated in
69 the
70 .Dq login
71 service specification; see
72 .Xr services 5 .
73 When a service request is received the following protocol
74 is initiated:
75 .Bl -enum
76 .It
77 The server checks the client's source port.
78 If the port is not in the range 512-1023, the server
79 aborts the connection.
80 .It
81 The server checks the client's source address
82 and requests the corresponding host name (see
83 .Xr gethostbyaddr 3 ,
84 .Xr hosts 5
85 and
86 .Xr named 8 ) .
87 If the hostname cannot be determined,
88 the dot-notation representation of the host address is used.
89 If the hostname is in the same domain as the server (according to
90 the last two components of the domain name),
91 or if the
92 .Fl a
93 option is given,
94 the addresses for the hostname are requested,
95 verifying that the name and address correspond.
96 Normal authentication is bypassed if the address verification fails.
97 .El
98 .Pp
99 Once the source port and address have been checked,
100 .Nm
101 proceeds with the authentication process described in
102 .Xr rshd 8 .
103 It then allocates a pseudo terminal (see
104 .Xr pty 4 ) ,
105 and manipulates file descriptors so that the slave
106 half of the pseudo terminal becomes the
107 .Em stdin ,
108 .Em stdout ,
109 and
110 .Em stderr
111 for a login process.
112 The login process is an instance of the
113 .Xr login 1
114 program, invoked with the
115 .Fl f
116 option if authentication has succeeded.
117 If automatic authentication fails, the user is
118 prompted to log in as if on a standard terminal line.
119 .Pp
120 The parent of the login process manipulates the master side of
121 the pseudo terminal, operating as an intermediary
122 between the login process and the client instance of the
123 .Xr rlogin 1
124 program.
125 In normal operation, the packet protocol described
126 in
127 .Xr pty 4
128 is invoked to provide
129 .Ql ^S/^Q
130 type facilities and propagate
131 interrupt signals to the remote programs.
132 The login process
133 propagates the client terminal's baud rate and terminal type,
134 as found in the environment variable,
135 .Ev TERM ;
136 see
137 .Xr environ 7 .
138 The screen or window size of the terminal is requested from the client,
139 and window size changes from the client are propagated to the pseudo terminal.
140 .Pp
141 Transport-level keepalive messages are enabled unless the
142 .Fl n
143 option is present.
144 The use of keepalive messages allows sessions to be timed out
145 if the client crashes or becomes unreachable.
146 .Sh FILES
147 .Bl -tag -width /etc/hostsxxxxxxxx -compact
148 .It Pa /etc/hosts
149 .It Pa /etc/hosts.equiv
150 .It Ev $HOME Ns Pa /.rhosts
151 .It Pa /var/run/nologin
152 .El
153 .Sh DIAGNOSTICS
154 All initial diagnostic messages are indicated
155 by a leading byte with a value of 1,
156 after which any network connections are closed.
157 If there are no errors before
158 .Xr login 1
159 is invoked, a null byte is returned as in indication of success.
160 .Bl -tag -width Ds
161 .It Sy Try again.
162 A
163 .Xr fork 2
164 by the server failed.
165 .El
166 .Sh SEE ALSO
167 .Xr login 1 ,
168 .Xr ruserok 3 ,
169 .Xr hosts 5 ,
170 .Xr hosts.equiv 5 ,
171 .Xr login.conf 5 ,
172 .Xr nologin 5 ,
173 .Xr services 5 ,
174 .Xr rshd 8
175 .Sh HISTORY
176 The
177 .Nm
178 utility appeared in
179 .Bx 4.2 .
180 .Pp
181 IPv6 support was added by WIDE/KAME project.
182 .Sh BUGS
183 The authentication procedure used here assumes the integrity
184 of each client machine and the connecting medium.
185 This is
186 insecure, but is useful in an
187 .Dq open
188 environment.
189 .Pp
190 A facility to allow all data exchanges to be encrypted should be
191 present.
192 .Pp
193 A more extensible protocol should be used.