summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ssh_config.560
2 files changed, 34 insertions, 31 deletions
diff --git a/ChangeLog b/ChangeLog
index 35b1b7b38..c71d8531d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -33,6 +33,9 @@
33 [ssh.1 ssh_config.5] 33 [ssh.1 ssh_config.5]
34 make `!command' a little clearer; 34 make `!command' a little clearer;
35 ok reyk 35 ok reyk
36 - jmc@cvs.openbsd.org 2005/12/08 15:06:29
37 [ssh_config.5]
38 keep options in order;
36 39
3720051201 4020051201
38 - (djm) [envpass.sh] Remove regress script that was accidentally committed 41 - (djm) [envpass.sh] Remove regress script that was accidentally committed
@@ -3425,4 +3428,4 @@
3425 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 3428 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
3426 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 3429 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
3427 3430
3428$Id: ChangeLog,v 1.4022 2005/12/13 08:30:27 djm Exp $ 3431$Id: ChangeLog,v 1.4023 2005/12/13 08:30:45 djm Exp $
diff --git a/ssh_config.5 b/ssh_config.5
index 440a6d71d..281b4046b 100644
--- a/ssh_config.5
+++ b/ssh_config.5
@@ -34,7 +34,7 @@
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 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. 35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36.\" 36.\"
37.\" $OpenBSD: ssh_config.5,v 1.66 2005/12/08 14:59:44 jmc Exp $ 37.\" $OpenBSD: ssh_config.5,v 1.67 2005/12/08 15:06:29 jmc Exp $
38.Dd September 25, 1999 38.Dd September 25, 1999
39.Dt SSH_CONFIG 5 39.Dt SSH_CONFIG 5
40.Os 40.Os
@@ -517,23 +517,6 @@ Default is the name given on the command line.
517Numeric IP addresses are also permitted (both on the command line and in 517Numeric IP addresses are also permitted (both on the command line and in
518.Cm HostName 518.Cm HostName
519specifications). 519specifications).
520.It Cm IdentityFile
521Specifies a file from which the user's RSA or DSA authentication identity
522is read.
523The default is
524.Pa ~/.ssh/identity
525for protocol version 1, and
526.Pa ~/.ssh/id_rsa
527and
528.Pa ~/.ssh/id_dsa
529for protocol version 2.
530Additionally, any identities represented by the authentication agent
531will be used for authentication.
532The file name may use the tilde
533syntax to refer to a user's home directory.
534It is possible to have
535multiple identity files specified in configuration files; all these
536identities will be tried in sequence.
537.It Cm IdentitiesOnly 520.It Cm IdentitiesOnly
538Specifies that 521Specifies that
539.Nm ssh 522.Nm ssh
@@ -552,6 +535,23 @@ This option is intented for situations where
552offers many different identities. 535offers many different identities.
553The default is 536The default is
554.Dq no . 537.Dq no .
538.It Cm IdentityFile
539Specifies a file from which the user's RSA or DSA authentication identity
540is read.
541The default is
542.Pa ~/.ssh/identity
543for protocol version 1, and
544.Pa ~/.ssh/id_rsa
545and
546.Pa ~/.ssh/id_dsa
547for protocol version 2.
548Additionally, any identities represented by the authentication agent
549will be used for authentication.
550The file name may use the tilde
551syntax to refer to a user's home directory.
552It is possible to have
553multiple identity files specified in configuration files; all these
554identities will be tried in sequence.
555.It Cm KbdInteractiveDevices 555.It Cm KbdInteractiveDevices
556Specifies the list of methods to use in keyboard-interactive authentication. 556Specifies the list of methods to use in keyboard-interactive authentication.
557Multiple method names must be comma-separated. 557Multiple method names must be comma-separated.
@@ -633,9 +633,6 @@ or
633.Dq no . 633.Dq no .
634The default is 634The default is
635.Dq yes . 635.Dq yes .
636.It Cm Port
637Specifies the port number to connect on the remote host.
638Default is 22.
639.It Cm PermitLocalCommand 636.It Cm PermitLocalCommand
640Allow local command execution via the 637Allow local command execution via the
641.Ic LocalCommand 638.Ic LocalCommand
@@ -649,6 +646,9 @@ or
649.Dq no . 646.Dq no .
650The default is 647The default is
651.Dq no . 648.Dq no .
649.It Cm Port
650Specifies the port number to connect on the remote host.
651Default is 22.
652.It Cm PreferredAuthentications 652.It Cm PreferredAuthentications
653Specifies the order in which the client should try protocol 2 653Specifies the order in which the client should try protocol 2
654authentication methods. 654authentication methods.
@@ -796,15 +796,6 @@ across multiple
796.Cm SendEnv 796.Cm SendEnv
797directives. 797directives.
798The default is not to send any environment variables. 798The default is not to send any environment variables.
799.It Cm ServerAliveInterval
800Sets a timeout interval in seconds after which if no data has been received
801from the server,
802.Nm ssh
803will send a message through the encrypted
804channel to request a response from the server.
805The default
806is 0, indicating that these messages will not be sent to the server.
807This option applies to protocol version 2 only.
808.It Cm ServerAliveCountMax 799.It Cm ServerAliveCountMax
809Sets the number of server alive messages (see above) which may be 800Sets the number of server alive messages (see above) which may be
810sent without 801sent without
@@ -832,6 +823,15 @@ If, for example,
832.Cm ServerAliveCountMax 823.Cm ServerAliveCountMax
833is left at the default, if the server becomes unresponsive ssh 824is left at the default, if the server becomes unresponsive ssh
834will disconnect after approximately 45 seconds. 825will disconnect after approximately 45 seconds.
826.It Cm ServerAliveInterval
827Sets a timeout interval in seconds after which if no data has been received
828from the server,
829.Nm ssh
830will send a message through the encrypted
831channel to request a response from the server.
832The default
833is 0, indicating that these messages will not be sent to the server.
834This option applies to protocol version 2 only.
835.It Cm SmartcardDevice 835.It Cm SmartcardDevice
836Specifies which smartcard device to use. 836Specifies which smartcard device to use.
837The argument to this keyword is the device 837The argument to this keyword is the device