diff options
author | Colin Watson <cjwatson@debian.org> | 2013-05-07 11:47:26 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2013-05-07 11:47:26 +0100 |
commit | 2ea3f720daeb1ca9f765365fce3a9546961fe624 (patch) | |
tree | c4fb7d1f51fa51e7677232de806aae150e29e2ac /sftp-server.0 | |
parent | f5efcd3450bbf8261915e0c4a6f851229dddaa79 (diff) | |
parent | ecebda56da46a03dafff923d91c382f31faa9eec (diff) |
* New upstream release (http://www.openssh.com/txt/release-6.2).
- Add support for multiple required authentication in SSH protocol 2 via
an AuthenticationMethods option (closes: #195716).
- Fix Sophie Germain formula in moduli(5) (closes: #698612).
- Update ssh-copy-id to Phil Hands' greatly revised version (closes:
#99785, #322228, #620428; LP: #518883, #835901, #1074798).
Diffstat (limited to 'sftp-server.0')
-rw-r--r-- | sftp-server.0 | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/sftp-server.0 b/sftp-server.0 index 340929d75..6beddcc13 100644 --- a/sftp-server.0 +++ b/sftp-server.0 | |||
@@ -4,7 +4,8 @@ NAME | |||
4 | sftp-server - SFTP server subsystem | 4 | sftp-server - SFTP server subsystem |
5 | 5 | ||
6 | SYNOPSIS | 6 | SYNOPSIS |
7 | sftp-server [-ehR] [-f log_facility] [-l log_level] [-u umask] | 7 | sftp-server [-ehR] [-d start_directory] [-f log_facility] [-l log_level] |
8 | [-u umask] | ||
8 | 9 | ||
9 | DESCRIPTION | 10 | DESCRIPTION |
10 | sftp-server is a program that speaks the server side of SFTP protocol to | 11 | sftp-server is a program that speaks the server side of SFTP protocol to |
@@ -17,6 +18,15 @@ DESCRIPTION | |||
17 | 18 | ||
18 | Valid options are: | 19 | Valid options are: |
19 | 20 | ||
21 | -d start_directory | ||
22 | specifies an alternate starting directory for users. The | ||
23 | pathname may contain the following tokens that are expanded at | ||
24 | runtime: %% is replaced by a literal '%', %h is replaced by the | ||
25 | home directory of the user being authenticated, and %u is | ||
26 | replaced by the username of that user. The default is to use the | ||
27 | user's home directory. This option is useful in conjunction with | ||
28 | the sshd_config(5) ChrootDirectory option. | ||
29 | |||
20 | -e Causes sftp-server to print logging information to stderr instead | 30 | -e Causes sftp-server to print logging information to stderr instead |
21 | of syslog for debugging. | 31 | of syslog for debugging. |
22 | 32 | ||
@@ -61,4 +71,4 @@ HISTORY | |||
61 | AUTHORS | 71 | AUTHORS |
62 | Markus Friedl <markus@openbsd.org> | 72 | Markus Friedl <markus@openbsd.org> |
63 | 73 | ||
64 | OpenBSD 5.2 January 9, 2010 OpenBSD 5.2 | 74 | OpenBSD 5.3 January 4, 2013 OpenBSD 5.3 |