diff options
author | Colin Watson <cjwatson@debian.org> | 2013-09-14 23:42:11 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2013-09-14 23:42:11 +0100 |
commit | 327155e6824b3ee13837bdde04e4eb47e147ff46 (patch) | |
tree | 8f8743122403c7a2e6ed919156711fb1520c657f /ssh.0 | |
parent | 0334ce32304e9ba2a10ee5ca49ca6e8ff3ba6cf4 (diff) | |
parent | 74e339b8f8936bc0d985e053a076d0c9b5e9ea51 (diff) |
* New upstream release (http://www.openssh.com/txt/release-6.3).
- sftp(1): add support for resuming partial downloads using the "reget"
command and on the sftp commandline or on the "get" commandline using
the "-a" (append) option (closes: #158590).
- ssh(1): add an "IgnoreUnknown" configuration option to selectively
suppress errors arising from unknown configuration directives (closes:
#436052).
- sftp(1): update progressmeter when data is acknowledged, not when it's
sent (partially addresses #708372).
- ssh(1): do not fatally exit when attempting to cleanup multiplexing-
created channels that are incompletely opened (closes: #651357).
Diffstat (limited to 'ssh.0')
-rw-r--r-- | ssh.0 | 23 |
1 files changed, 18 insertions, 5 deletions
@@ -5,11 +5,13 @@ NAME | |||
5 | 5 | ||
6 | SYNOPSIS | 6 | SYNOPSIS |
7 | ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec] | 7 | ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec] |
8 | [-D [bind_address:]port] [-e escape_char] [-F configfile] [-I pkcs11] | 8 | [-D [bind_address:]port] [-E log_file] [-e escape_char] |
9 | [-i identity_file] [-L [bind_address:]port:host:hostport] | 9 | [-F configfile] [-I pkcs11] [-i identity_file] |
10 | [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port] | 10 | [-L [bind_address:]port:host:hostport] [-l login_name] [-m mac_spec] |
11 | [-O ctl_cmd] [-o option] [-p port] | ||
11 | [-R [bind_address:]port:host:hostport] [-S ctl_path] [-W host:port] | 12 | [-R [bind_address:]port:host:hostport] [-S ctl_path] [-W host:port] |
12 | [-w local_tun[:remote_tun]] [user@]hostname [command] | 13 | [-w local_tun[:remote_tun]] [user@]hostname [command] |
14 | ssh -Q protocol_feature | ||
13 | 15 | ||
14 | DESCRIPTION | 16 | DESCRIPTION |
15 | ssh (SSH client) is a program for logging into a remote machine and for | 17 | ssh (SSH client) is a program for logging into a remote machine and for |
@@ -102,6 +104,9 @@ DESCRIPTION | |||
102 | be bound for local use only, while an empty address or `*' | 104 | be bound for local use only, while an empty address or `*' |
103 | indicates that the port should be available from all interfaces. | 105 | indicates that the port should be available from all interfaces. |
104 | 106 | ||
107 | -E log_file | ||
108 | Append debug logs to log_file instead of standard error. | ||
109 | |||
105 | -e escape_char | 110 | -e escape_char |
106 | Sets the escape character for sessions with a pty (default: `~'). | 111 | Sets the escape character for sessions with a pty (default: `~'). |
107 | The escape character is only recognized at the beginning of a | 112 | The escape character is only recognized at the beginning of a |
@@ -289,6 +294,14 @@ DESCRIPTION | |||
289 | Port to connect to on the remote host. This can be specified on | 294 | Port to connect to on the remote host. This can be specified on |
290 | a per-host basis in the configuration file. | 295 | a per-host basis in the configuration file. |
291 | 296 | ||
297 | -Q protocol_feature | ||
298 | Queries ssh for the algorithms supported for the specified | ||
299 | version 2 protocol_feature. The queriable features are: | ||
300 | ``cipher'' (supported symmetric ciphers), ``MAC'' (supported | ||
301 | message integrity codes), ``KEX'' (key exchange algorithms), | ||
302 | ``key'' (key types). Protocol features are treated case- | ||
303 | insensitively. | ||
304 | |||
292 | -q Quiet mode. Causes most warning and diagnostic messages to be | 305 | -q Quiet mode. Causes most warning and diagnostic messages to be |
293 | suppressed. | 306 | suppressed. |
294 | 307 | ||
@@ -788,7 +801,7 @@ FILES | |||
788 | This is the per-user configuration file. The file format and | 801 | This is the per-user configuration file. The file format and |
789 | configuration options are described in ssh_config(5). Because of | 802 | configuration options are described in ssh_config(5). Because of |
790 | the potential for abuse, this file must have strict permissions: | 803 | the potential for abuse, this file must have strict permissions: |
791 | read/write for the user, and not accessible by others. | 804 | read/write for the user, and not writable by others. |
792 | 805 | ||
793 | ~/.ssh/environment | 806 | ~/.ssh/environment |
794 | Contains additional definitions for environment variables; see | 807 | Contains additional definitions for environment variables; see |
@@ -919,4 +932,4 @@ AUTHORS | |||
919 | created OpenSSH. Markus Friedl contributed the support for SSH protocol | 932 | created OpenSSH. Markus Friedl contributed the support for SSH protocol |
920 | versions 1.5 and 2.0. | 933 | versions 1.5 and 2.0. |
921 | 934 | ||
922 | OpenBSD 5.3 October 4, 2012 OpenBSD 5.3 | 935 | OpenBSD 5.4 July 18, 2013 OpenBSD 5.4 |