xref: /freebsd/crypto/openssh/sshd.8 (revision 77b7cdf1999ee965ad494fddd184b18f532ac91a)
1.\"  -*- nroff -*-
2.\"
3.\" Author: Tatu Ylonen <ylo@cs.hut.fi>
4.\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5.\"                    All rights reserved
6.\"
7.\" As far as I am concerned, the code I have written for this software
8.\" can be used freely for any purpose.  Any derived versions of this
9.\" software must be clearly marked as such, and if the derived work is
10.\" incompatible with the protocol description in the RFC file, it must be
11.\" called by a name other than "ssh" or "Secure Shell".
12.\"
13.\" Copyright (c) 1999,2000 Markus Friedl.  All rights reserved.
14.\" Copyright (c) 1999 Aaron Campbell.  All rights reserved.
15.\" Copyright (c) 1999 Theo de Raadt.  All rights reserved.
16.\"
17.\" Redistribution and use in source and binary forms, with or without
18.\" modification, are permitted provided that the following conditions
19.\" are met:
20.\" 1. Redistributions of source code must retain the above copyright
21.\"    notice, this list of conditions and the following disclaimer.
22.\" 2. Redistributions in binary form must reproduce the above copyright
23.\"    notice, this list of conditions and the following disclaimer in the
24.\"    documentation and/or other materials provided with the distribution.
25.\"
26.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36.\"
37.\" $OpenBSD: sshd.8,v 1.194 2003/01/31 21:54:40 jmc Exp $
38.\" $FreeBSD$
39.Dd September 25, 1999
40.Dt SSHD 8
41.Os
42.Sh NAME
43.Nm sshd
44.Nd OpenSSH SSH daemon
45.Sh SYNOPSIS
46.Nm sshd
47.Bk -words
48.Op Fl deiqtD46
49.Op Fl b Ar bits
50.Op Fl f Ar config_file
51.Op Fl g Ar login_grace_time
52.Op Fl h Ar host_key_file
53.Op Fl k Ar key_gen_time
54.Op Fl o Ar option
55.Op Fl p Ar port
56.Op Fl u Ar len
57.Ek
58.Sh DESCRIPTION
59.Nm
60(SSH Daemon) is the daemon program for
61.Xr ssh 1 .
62Together these programs replace rlogin and rsh, and
63provide secure encrypted communications between two untrusted hosts
64over an insecure network.
65The programs are intended to be as easy to
66install and use as possible.
67.Pp
68.Nm
69is the daemon that listens for connections from clients.
70It is normally started at boot from
71.Pa /etc/rc.d/sshd .
72It forks a new
73daemon for each incoming connection.
74The forked daemons handle
75key exchange, encryption, authentication, command execution,
76and data exchange.
77This implementation of
78.Nm
79supports both SSH protocol version 1 and 2 simultaneously.
80.Nm
81works as follows:
82.Pp
83.Ss SSH protocol version 1
84.Pp
85Each host has a host-specific RSA key
86(normally 1024 bits) used to identify the host.
87Additionally, when
88the daemon starts, it generates a server RSA key (normally 768 bits).
89This key is normally regenerated every hour if it has been used, and
90is never stored on disk.
91.Pp
92Whenever a client connects, the daemon responds with its public
93host and server keys.
94The client compares the
95RSA host key against its own database to verify that it has not changed.
96The client then generates a 256 bit random number.
97It encrypts this
98random number using both the host key and the server key, and sends
99the encrypted number to the server.
100Both sides then use this
101random number as a session key which is used to encrypt all further
102communications in the session.
103The rest of the session is encrypted
104using a conventional cipher, currently Blowfish or 3DES, with 3DES
105being used by default.
106The client selects the encryption algorithm
107to use from those offered by the server.
108.Pp
109Next, the server and the client enter an authentication dialog.
110The client tries to authenticate itself using
111.Pa .rhosts
112authentication,
113.Pa .rhosts
114authentication combined with RSA host
115authentication, RSA challenge-response authentication, or password
116based authentication.
117.Pp
118Rhosts authentication is normally disabled
119because it is fundamentally insecure, but can be enabled in the server
120configuration file if desired.
121System security is not improved unless
122.Nm rshd ,
123.Nm rlogind ,
124and
125.Nm rexecd
126are disabled (thus completely disabling
127.Xr rlogin
128and
129.Xr rsh
130into the machine).
131.Pp
132.Ss SSH protocol version 2
133.Pp
134Version 2 works similarly:
135Each host has a host-specific key (RSA or DSA) used to identify the host.
136However, when the daemon starts, it does not generate a server key.
137Forward security is provided through a Diffie-Hellman key agreement.
138This key agreement results in a shared session key.
139.Pp
140The rest of the session is encrypted using a symmetric cipher, currently
141128 bit AES, Blowfish, 3DES, CAST128, Arcfour, 192 bit AES, or 256 bit AES.
142The client selects the encryption algorithm
143to use from those offered by the server.
144Additionally, session integrity is provided
145through a cryptographic message authentication code
146(hmac-sha1 or hmac-md5).
147.Pp
148Protocol version 2 provides a public key based
149user (PubkeyAuthentication) or
150client host (HostbasedAuthentication) authentication method,
151conventional password authentication and challenge response based methods.
152.Pp
153.Ss Command execution and data forwarding
154.Pp
155If the client successfully authenticates itself, a dialog for
156preparing the session is entered.
157At this time the client may request
158things like allocating a pseudo-tty, forwarding X11 connections,
159forwarding TCP/IP connections, or forwarding the authentication agent
160connection over the secure channel.
161.Pp
162Finally, the client either requests a shell or execution of a command.
163The sides then enter session mode.
164In this mode, either side may send
165data at any time, and such data is forwarded to/from the shell or
166command on the server side, and the user terminal in the client side.
167.Pp
168When the user program terminates and all forwarded X11 and other
169connections have been closed, the server sends command exit status to
170the client, and both sides exit.
171.Pp
172.Nm
173can be configured using command-line options or a configuration
174file.
175Command-line options override values specified in the
176configuration file.
177.Pp
178.Nm
179rereads its configuration file when it receives a hangup signal,
180.Dv SIGHUP ,
181by executing itself with the name it was started as, i.e.,
182.Pa /usr/sbin/sshd .
183.Pp
184The options are as follows:
185.Bl -tag -width Ds
186.It Fl b Ar bits
187Specifies the number of bits in the ephemeral protocol version 1
188server key (default 768).
189.It Fl d
190Debug mode.
191The server sends verbose debug output to the system
192log, and does not put itself in the background.
193The server also will not fork and will only process one connection.
194This option is only intended for debugging for the server.
195Multiple
196.Fl d
197options increase the debugging level.
198Maximum is 3.
199.It Fl e
200When this option is specified,
201.Nm
202will send the output to the standard error instead of the system log.
203.It Fl f Ar configuration_file
204Specifies the name of the configuration file.
205The default is
206.Pa /etc/ssh/sshd_config .
207.Nm
208refuses to start if there is no configuration file.
209.It Fl g Ar login_grace_time
210Gives the grace time for clients to authenticate themselves (default
211120 seconds).
212If the client fails to authenticate the user within
213this many seconds, the server disconnects and exits.
214A value of zero indicates no limit.
215.It Fl h Ar host_key_file
216Specifies a file from which a host key is read.
217This option must be given if
218.Nm
219is not run as root (as the normal
220host key files are normally not readable by anyone but root).
221The default is
222.Pa /etc/ssh/ssh_host_key
223for protocol version 1, and
224.Pa /etc/ssh/ssh_host_dsa_key
225for protocol version 2.
226It is possible to have multiple host key files for
227the different protocol versions and host key algorithms.
228.It Fl i
229Specifies that
230.Nm
231is being run from
232.Xr inetd 8 .
233.Nm
234is normally not run
235from inetd because it needs to generate the server key before it can
236respond to the client, and this may take tens of seconds.
237Clients would have to wait too long if the key was regenerated every time.
238However, with small key sizes (e.g., 512) using
239.Nm
240from inetd may
241be feasible.
242.It Fl k Ar key_gen_time
243Specifies how often the ephemeral protocol version 1 server key is
244regenerated (default 3600 seconds, or one hour).
245The motivation for regenerating the key fairly
246often is that the key is not stored anywhere, and after about an hour,
247it becomes impossible to recover the key for decrypting intercepted
248communications even if the machine is cracked into or physically
249seized.
250A value of zero indicates that the key will never be regenerated.
251.It Fl o Ar option
252Can be used to give options in the format used in the configuration file.
253This is useful for specifying options for which there is no separate
254command-line flag.
255.It Fl p Ar port
256Specifies the port on which the server listens for connections
257(default 22).
258Multiple port options are permitted.
259Ports specified in the configuration file are ignored when a
260command-line port is specified.
261.It Fl q
262Quiet mode.
263Nothing is sent to the system log.
264Normally the beginning,
265authentication, and termination of each connection is logged.
266.It Fl t
267Test mode.
268Only check the validity of the configuration file and sanity of the keys.
269This is useful for updating
270.Nm
271reliably as configuration options may change.
272.It Fl u Ar len
273This option is used to specify the size of the field
274in the
275.Li utmp
276structure that holds the remote host name.
277If the resolved host name is longer than
278.Ar len ,
279the dotted decimal value will be used instead.
280This allows hosts with very long host names that
281overflow this field to still be uniquely identified.
282Specifying
283.Fl u0
284indicates that only dotted decimal addresses
285should be put into the
286.Pa utmp
287file.
288.Fl u0
289may also be used to prevent
290.Nm
291from making DNS requests unless the authentication
292mechanism or configuration requires it.
293Authentication mechanisms that may require DNS include
294.Cm RhostsAuthentication ,
295.Cm RhostsRSAAuthentication ,
296.Cm HostbasedAuthentication
297and using a
298.Cm from="pattern-list"
299option in a key file.
300Configuration options that require DNS include using a
301USER@HOST pattern in
302.Cm AllowUsers
303or
304.Cm DenyUsers .
305.It Fl D
306When this option is specified
307.Nm
308will not detach and does not become a daemon.
309This allows easy monitoring of
310.Nm sshd .
311.It Fl 4
312Forces
313.Nm
314to use IPv4 addresses only.
315.It Fl 6
316Forces
317.Nm
318to use IPv6 addresses only.
319.El
320.Sh CONFIGURATION FILE
321.Nm
322reads configuration data from
323.Pa /etc/ssh/sshd_config
324(or the file specified with
325.Fl f
326on the command line).
327The file format and configuration options are described in
328.Xr sshd_config 5 .
329.Sh LOGIN PROCESS
330When a user successfully logs in,
331.Nm
332does the following:
333.Bl -enum -offset indent
334.It
335If the login is on a tty, and no command has been specified,
336prints last login time and
337.Pa /etc/motd
338(unless prevented in the configuration file or by
339.Pa $HOME/.hushlogin ;
340see the
341.Sx FILES
342section).
343.It
344If the login is on a tty, records login time.
345.It
346Checks
347.Pa /etc/nologin and
348.Pa /var/run/nologin ;
349if one exists, it prints the contents and quits
350(unless root).
351.It
352Changes to run with normal user privileges.
353.It
354Sets up basic environment.
355.It
356Reads
357.Pa $HOME/.ssh/environment
358if it exists and users are allowed to change their environment.
359See the
360.Cm PermitUserEnvironment
361option in
362.Xr sshd_config 5 .
363.It
364Changes to user's home directory.
365.It
366If
367.Pa $HOME/.ssh/rc
368exists, runs it; else if
369.Pa /etc/ssh/sshrc
370exists, runs
371it; otherwise runs
372.Xr xauth 1 .
373The
374.Dq rc
375files are given the X11
376authentication protocol and cookie (if applicable) in standard input.
377.It
378Runs user's shell or command.
379.El
380.Sh AUTHORIZED_KEYS FILE FORMAT
381.Pa $HOME/.ssh/authorized_keys
382is the default file that lists the public keys that are
383permitted for RSA authentication in protocol version 1
384and for public key authentication (PubkeyAuthentication)
385in protocol version 2.
386.Cm AuthorizedKeysFile
387may be used to specify an alternative file.
388.Pp
389Each line of the file contains one
390key (empty lines and lines starting with a
391.Ql #
392are ignored as
393comments).
394Each RSA public key consists of the following fields, separated by
395spaces: options, bits, exponent, modulus, comment.
396Each protocol version 2 public key consists of:
397options, keytype, base64 encoded key, comment.
398The options field
399is optional; its presence is determined by whether the line starts
400with a number or not (the options field never starts with a number).
401The bits, exponent, modulus and comment fields give the RSA key for
402protocol version 1; the
403comment field is not used for anything (but may be convenient for the
404user to identify the key).
405For protocol version 2 the keytype is
406.Dq ssh-dss
407or
408.Dq ssh-rsa .
409.Pp
410Note that lines in this file are usually several hundred bytes long
411(because of the size of the public key encoding).
412You don't want to type them in; instead, copy the
413.Pa identity.pub ,
414.Pa id_dsa.pub
415or the
416.Pa id_rsa.pub
417file and edit it.
418.Pp
419.Nm
420enforces a minimum RSA key modulus size for protocol 1
421and protocol 2 keys of 768 bits.
422.Pp
423The options (if present) consist of comma-separated option
424specifications.
425No spaces are permitted, except within double quotes.
426The following option specifications are supported (note
427that option keywords are case-insensitive):
428.Bl -tag -width Ds
429.It Cm from="pattern-list"
430Specifies that in addition to public key authentication, the canonical name
431of the remote host must be present in the comma-separated list of
432patterns
433.Pf ( Ql *
434and
435.Ql ?
436serve as wildcards).
437The list may also contain
438patterns negated by prefixing them with
439.Ql ! ;
440if the canonical host name matches a negated pattern, the key is not accepted.
441The purpose
442of this option is to optionally increase security: public key authentication
443by itself does not trust the network or name servers or anything (but
444the key); however, if somebody somehow steals the key, the key
445permits an intruder to log in from anywhere in the world.
446This additional option makes using a stolen key more difficult (name
447servers and/or routers would have to be compromised in addition to
448just the key).
449.It Cm command="command"
450Specifies that the command is executed whenever this key is used for
451authentication.
452The command supplied by the user (if any) is ignored.
453The command is run on a pty if the client requests a pty;
454otherwise it is run without a tty.
455If an 8-bit clean channel is required,
456one must not request a pty or should specify
457.Cm no-pty .
458A quote may be included in the command by quoting it with a backslash.
459This option might be useful
460to restrict certain public keys to perform just a specific operation.
461An example might be a key that permits remote backups but nothing else.
462Note that the client may specify TCP/IP and/or X11
463forwarding unless they are explicitly prohibited.
464Note that this option applies to shell, command or subsystem execution.
465.It Cm environment="NAME=value"
466Specifies that the string is to be added to the environment when
467logging in using this key.
468Environment variables set this way
469override other default environment values.
470Multiple options of this type are permitted.
471Environment processing is disabled by default and is
472controlled via the
473.Cm PermitUserEnvironment
474option.
475This option is automatically disabled if
476.Cm UseLogin
477is enabled.
478.It Cm no-port-forwarding
479Forbids TCP/IP forwarding when this key is used for authentication.
480Any port forward requests by the client will return an error.
481This might be used, e.g., in connection with the
482.Cm command
483option.
484.It Cm no-X11-forwarding
485Forbids X11 forwarding when this key is used for authentication.
486Any X11 forward requests by the client will return an error.
487.It Cm no-agent-forwarding
488Forbids authentication agent forwarding when this key is used for
489authentication.
490.It Cm no-pty
491Prevents tty allocation (a request to allocate a pty will fail).
492.It Cm permitopen="host:port"
493Limit local
494.Li ``ssh -L''
495port forwarding such that it may only connect to the specified host and
496port.
497IPv6 addresses can be specified with an alternative syntax:
498.Ar host/port .
499Multiple
500.Cm permitopen
501options may be applied separated by commas. No pattern matching is
502performed on the specified hostnames, they must be literal domains or
503addresses.
504.El
505.Ss Examples
5061024 33 12121.\|.\|.\|312314325 ylo@foo.bar
507.Pp
508from="*.niksula.hut.fi,!pc.niksula.hut.fi" 1024 35 23.\|.\|.\|2334 ylo@niksula
509.Pp
510command="dump /home",no-pty,no-port-forwarding 1024 33 23.\|.\|.\|2323 backup.hut.fi
511.Pp
512permitopen="10.2.1.55:80",permitopen="10.2.1.56:25" 1024 33 23.\|.\|.\|2323
513.Sh SSH_KNOWN_HOSTS FILE FORMAT
514The
515.Pa /etc/ssh/ssh_known_hosts
516and
517.Pa $HOME/.ssh/known_hosts
518files contain host public keys for all known hosts.
519The global file should
520be prepared by the administrator (optional), and the per-user file is
521maintained automatically: whenever the user connects from an unknown host
522its key is added to the per-user file.
523.Pp
524Each line in these files contains the following fields: hostnames,
525bits, exponent, modulus, comment.
526The fields are separated by spaces.
527.Pp
528Hostnames is a comma-separated list of patterns ('*' and '?' act as
529wildcards); each pattern in turn is matched against the canonical host
530name (when authenticating a client) or against the user-supplied
531name (when authenticating a server).
532A pattern may also be preceded by
533.Ql !
534to indicate negation: if the host name matches a negated
535pattern, it is not accepted (by that line) even if it matched another
536pattern on the line.
537.Pp
538Bits, exponent, and modulus are taken directly from the RSA host key; they
539can be obtained, e.g., from
540.Pa /etc/ssh/ssh_host_key.pub .
541The optional comment field continues to the end of the line, and is not used.
542.Pp
543Lines starting with
544.Ql #
545and empty lines are ignored as comments.
546.Pp
547When performing host authentication, authentication is accepted if any
548matching line has the proper key.
549It is thus permissible (but not
550recommended) to have several lines or different host keys for the same
551names.
552This will inevitably happen when short forms of host names
553from different domains are put in the file.
554It is possible
555that the files contain conflicting information; authentication is
556accepted if valid information can be found from either file.
557.Pp
558Note that the lines in these files are typically hundreds of characters
559long, and you definitely don't want to type in the host keys by hand.
560Rather, generate them by a script
561or by taking
562.Pa /etc/ssh/ssh_host_key.pub
563and adding the host names at the front.
564.Ss Examples
565.Bd -literal
566closenet,.\|.\|.\|,130.233.208.41 1024 37 159.\|.\|.93 closenet.hut.fi
567cvs.openbsd.org,199.185.137.3 ssh-rsa AAAA1234.....=
568.Ed
569.Sh FILES
570.Bl -tag -width Ds
571.It Pa /etc/ssh/sshd_config
572Contains configuration data for
573.Nm sshd .
574The file format and configuration options are described in
575.Xr sshd_config 5 .
576.It Pa /etc/ssh/ssh_host_key, /etc/ssh/ssh_host_dsa_key
577These two files contain the private parts of the host keys.
578These files should only be owned by root, readable only by root, and not
579accessible to others.
580Note that
581.Nm
582does not start if this file is group/world-accessible.
583.It Pa /etc/ssh/ssh_host_key.pub, /etc/ssh/ssh_host_dsa_key.pub
584These two files contain the public parts of the host keys.
585These files should be world-readable but writable only by
586root.
587Their contents should match the respective private parts.
588These files are not
589really used for anything; they are provided for the convenience of
590the user so their contents can be copied to known hosts files.
591These files are created using
592.Xr ssh-keygen 1 .
593.It Pa /etc/ssh/moduli
594Contains Diffie-Hellman groups used for the "Diffie-Hellman Group Exchange".
595The file format is described in
596.Xr moduli 5 .
597.It Pa /var/empty
598.Xr chroot 2
599directory used by
600.Nm
601during privilege separation in the pre-authentication phase.
602The directory should not contain any files and must be owned by root
603and not group or world-writable.
604.It Pa /var/run/sshd.pid
605Contains the process ID of the
606.Nm
607listening for connections (if there are several daemons running
608concurrently for different ports, this contains the process ID of the one
609started last).
610The content of this file is not sensitive; it can be world-readable.
611.It Pa $HOME/.ssh/authorized_keys
612Lists the public keys (RSA or DSA) that can be used to log into the user's account.
613This file must be readable by root (which may on some machines imply
614it being world-readable if the user's home directory resides on an NFS
615volume).
616It is recommended that it not be accessible by others.
617The format of this file is described above.
618Users will place the contents of their
619.Pa identity.pub ,
620.Pa id_dsa.pub
621and/or
622.Pa id_rsa.pub
623files into this file, as described in
624.Xr ssh-keygen 1 .
625.It Pa "/etc/ssh/ssh_known_hosts" and "$HOME/.ssh/known_hosts"
626These files are consulted when using rhosts with RSA host
627authentication or protocol version 2 hostbased authentication
628to check the public key of the host.
629The key must be listed in one of these files to be accepted.
630The client uses the same files
631to verify that it is connecting to the correct remote host.
632These files should be writable only by root/the owner.
633.Pa /etc/ssh/ssh_known_hosts
634should be world-readable, and
635.Pa $HOME/.ssh/known_hosts
636can, but need not be, world-readable.
637.It Pa /etc/nologin
638If this file exists,
639.Nm
640refuses to let anyone except root log in.
641The contents of the file
642are displayed to anyone trying to log in, and non-root connections are
643refused.
644The file should be world-readable.
645.It Pa /etc/hosts.allow, /etc/hosts.deny
646Access controls that should be enforced by tcp-wrappers are defined here.
647Further details are described in
648.Xr hosts_access 5 .
649.It Pa $HOME/.rhosts
650This file contains host-username pairs, separated by a space, one per
651line.
652The given user on the corresponding host is permitted to log in
653without a password.
654The same file is used by rlogind and rshd.
655The file must
656be writable only by the user; it is recommended that it not be
657accessible by others.
658.Pp
659If is also possible to use netgroups in the file.
660Either host or user
661name may be of the form +@groupname to specify all hosts or all users
662in the group.
663.It Pa $HOME/.shosts
664For ssh,
665this file is exactly the same as for
666.Pa .rhosts .
667However, this file is
668not used by rlogin and rshd, so using this permits access using SSH only.
669.It Pa /etc/hosts.equiv
670This file is used during
671.Pa .rhosts
672authentication.
673In the simplest form, this file contains host names, one per line.
674Users on
675those hosts are permitted to log in without a password, provided they
676have the same user name on both machines.
677The host name may also be
678followed by a user name; such users are permitted to log in as
679.Em any
680user on this machine (except root).
681Additionally, the syntax
682.Dq +@group
683can be used to specify netgroups.
684Negated entries start with
685.Ql \&- .
686.Pp
687If the client host/user is successfully matched in this file, login is
688automatically permitted provided the client and server user names are the
689same.
690Additionally, successful RSA host authentication is normally required.
691This file must be writable only by root; it is recommended
692that it be world-readable.
693.Pp
694.Sy "Warning: It is almost never a good idea to use user names in"
695.Pa hosts.equiv .
696Beware that it really means that the named user(s) can log in as
697.Em anybody ,
698which includes bin, daemon, adm, and other accounts that own critical
699binaries and directories.
700Using a user name practically grants the user root access.
701The only valid use for user names that I can think
702of is in negative entries.
703.Pp
704Note that this warning also applies to rsh/rlogin.
705.It Pa /etc/ssh/shosts.equiv
706This is processed exactly as
707.Pa /etc/hosts.equiv .
708However, this file may be useful in environments that want to run both
709rsh/rlogin and ssh.
710.It Pa $HOME/.ssh/environment
711This file is read into the environment at login (if it exists).
712It can only contain empty lines, comment lines (that start with
713.Ql # ) ,
714and assignment lines of the form name=value.
715The file should be writable
716only by the user; it need not be readable by anyone else.
717Environment processing is disabled by default and is
718controlled via the
719.Cm PermitUserEnvironment
720option.
721.It Pa $HOME/.ssh/rc
722If this file exists, it is run with
723.Pa /bin/sh
724after reading the
725environment files but before starting the user's shell or command.
726It must not produce any output on stdout; stderr must be used
727instead.
728If X11 forwarding is in use, it will receive the "proto cookie" pair in
729its standard input (and
730.Ev DISPLAY
731in its environment).
732The script must call
733.Xr xauth 1
734because
735.Nm
736will not run xauth automatically to add X11 cookies.
737.Pp
738The primary purpose of this file is to run any initialization routines
739which may be needed before the user's home directory becomes
740accessible; AFS is a particular example of such an environment.
741.Pp
742This file will probably contain some initialization code followed by
743something similar to:
744.Bd -literal
745if read proto cookie && [ -n "$DISPLAY" ]; then
746	if [ `echo $DISPLAY | cut -c1-10` = 'localhost:' ]; then
747		# X11UseLocalhost=yes
748		echo add unix:`echo $DISPLAY |
749		    cut -c11-` $proto $cookie
750	else
751		# X11UseLocalhost=no
752		echo add $DISPLAY $proto $cookie
753	fi | xauth -q -
754fi
755.Ed
756.Pp
757If this file does not exist,
758.Pa /etc/ssh/sshrc
759is run, and if that
760does not exist either, xauth is used to add the cookie.
761.Pp
762This file should be writable only by the user, and need not be
763readable by anyone else.
764.It Pa /etc/ssh/sshrc
765Like
766.Pa $HOME/.ssh/rc .
767This can be used to specify
768machine-specific login-time initializations globally.
769This file should be writable only by root, and should be world-readable.
770.El
771.Sh AUTHORS
772OpenSSH is a derivative of the original and free
773ssh 1.2.12 release by Tatu Ylonen.
774Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
775Theo de Raadt and Dug Song
776removed many bugs, re-added newer features and
777created OpenSSH.
778Markus Friedl contributed the support for SSH
779protocol versions 1.5 and 2.0.
780Niels Provos and Markus Friedl contributed support
781for privilege separation.
782.Sh SEE ALSO
783.Xr scp 1 ,
784.Xr sftp 1 ,
785.Xr ssh 1 ,
786.Xr ssh-add 1 ,
787.Xr ssh-agent 1 ,
788.Xr ssh-keygen 1 ,
789.Xr login.conf 5 ,
790.Xr moduli 5 ,
791.Xr sshd_config 5 ,
792.Xr sftp-server 8
793.Rs
794.%A T. Ylonen
795.%A T. Kivinen
796.%A M. Saarinen
797.%A T. Rinne
798.%A S. Lehtinen
799.%T "SSH Protocol Architecture"
800.%N draft-ietf-secsh-architecture-12.txt
801.%D January 2002
802.%O work in progress material
803.Re
804.Rs
805.%A M. Friedl
806.%A N. Provos
807.%A W. A. Simpson
808.%T "Diffie-Hellman Group Exchange for the SSH Transport Layer Protocol"
809.%N draft-ietf-secsh-dh-group-exchange-02.txt
810.%D January 2002
811.%O work in progress material
812.Re
813