diff options
author | Colin Watson <cjwatson@debian.org> | 2008-07-22 14:59:59 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2008-07-22 14:59:59 +0000 |
commit | ef94e5613d37bcbf880f21ee6094e4b1c7683a4c (patch) | |
tree | eebe1697910d248823033b5d14354c7f5ee8b471 /sftp-server.0 | |
parent | 8f42e9b75a55401fa9dfdf14d49fbe5396c6ce92 (diff) | |
parent | 70847d299887abb96f8703ca99db6d817b78960e (diff) |
Import OpenSSH 5.1p1.
Diffstat (limited to 'sftp-server.0')
-rw-r--r-- | sftp-server.0 | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sftp-server.0 b/sftp-server.0 new file mode 100644 index 000000000..941e99e14 --- /dev/null +++ b/sftp-server.0 | |||
@@ -0,0 +1,50 @@ | |||
1 | SFTP-SERVER(8) OpenBSD System Manager's Manual SFTP-SERVER(8) | ||
2 | |||
3 | NAME | ||
4 | sftp-server - SFTP server subsystem | ||
5 | |||
6 | SYNOPSIS | ||
7 | sftp-server [-f log_facility] [-l log_level] | ||
8 | |||
9 | DESCRIPTION | ||
10 | sftp-server is a program that speaks the server side of SFTP protocol to | ||
11 | stdout and expects client requests from stdin. sftp-server is not in- | ||
12 | tended to be called directly, but from sshd(8) using the Subsystem op- | ||
13 | tion. | ||
14 | |||
15 | Command-line flags to sftp-server should be specified in the Subsystem | ||
16 | declaration. See sshd_config(5) for more information. | ||
17 | |||
18 | Valid options are: | ||
19 | |||
20 | -f log_facility | ||
21 | Specifies the facility code that is used when logging messages | ||
22 | from sftp-server. The possible values are: DAEMON, USER, AUTH, | ||
23 | LOCAL0, LOCAL1, LOCAL2, LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7. | ||
24 | The default is AUTH. | ||
25 | |||
26 | -l log_level | ||
27 | Specifies which messages will be logged by sftp-server. The pos- | ||
28 | sible values are: QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DE- | ||
29 | BUG1, DEBUG2, and DEBUG3. INFO and VERBOSE log transactions that | ||
30 | sftp-server performs on behalf of the client. DEBUG and DEBUG1 | ||
31 | are equivalent. DEBUG2 and DEBUG3 each specify higher levels of | ||
32 | debugging output. The default is ERROR. | ||
33 | |||
34 | For logging to work, sftp-server must be able to access /dev/log. Use of | ||
35 | sftp-server in a chroot configuation therefore requires that syslogd(8) | ||
36 | establish a logging socket inside the chroot directory. | ||
37 | |||
38 | SEE ALSO | ||
39 | sftp(1), ssh(1), sshd_config(5), sshd(8) | ||
40 | |||
41 | T. Ylonen and S. Lehtinen, SSH File Transfer Protocol, draft-ietf-secsh- | ||
42 | filexfer-00.txt, January 2001, work in progress material. | ||
43 | |||
44 | HISTORY | ||
45 | sftp-server first appeared in OpenBSD 2.8. | ||
46 | |||
47 | AUTHORS | ||
48 | Markus Friedl <markus@openbsd.org> | ||
49 | |||
50 | OpenBSD 4.4 July 18, 2008 1 | ||