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