No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / external / bsd / openssh / dist / sftp-server.8
blob20c03e2bd880ecb664ebfc425336477943f85171
1 .\"     $NetBSD: sftp-server.8,v 1.1.1.2 2009/12/27 01:07:08 christos Exp $
2 .\" $OpenBSD: sftp-server.8,v 1.15 2009/03/26 08:38:39 sobrado Exp $
3 .\"
4 .\" Copyright (c) 2000 Markus Friedl.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 .\"
26 .Dd March 26 2009
27 .Dt SFTP-SERVER 8
28 .Os
29 .Sh NAME
30 .Nm sftp-server
31 .Nd SFTP server subsystem
32 .Sh SYNOPSIS
33 .Nm sftp-server
34 .Op Fl f Ar log_facility
35 .Op Fl l Ar log_level
36 .Sh DESCRIPTION
37 .Nm
38 is a program that speaks the server side of SFTP protocol
39 to stdout and expects client requests from stdin.
40 .Nm
41 is not intended to be called directly, but from
42 .Xr sshd 8
43 using the
44 .Cm Subsystem
45 option.
46 .Pp
47 Command-line flags to
48 .Nm
49 should be specified in the
50 .Cm Subsystem
51 declaration.
52 See
53 .Xr sshd_config 5
54 for more information.
55 .Pp
56 Valid options are:
57 .Bl -tag -width Ds
58 .It Fl f Ar log_facility
59 Specifies the facility code that is used when logging messages from
60 .Nm .
61 The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2,
62 LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.
63 The default is AUTH.
64 .It Fl l Ar log_level
65 Specifies which messages will be logged by
66 .Nm .
67 The possible values are:
68 QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3.
69 INFO and VERBOSE log transactions that
70 .Nm
71 performs on behalf of the client.
72 DEBUG and DEBUG1 are equivalent.
73 DEBUG2 and DEBUG3 each specify higher levels of debugging output.
74 The default is ERROR.
75 .El
76 .Pp
77 For logging to work,
78 .Nm
79 must be able to access
80 .Pa /dev/log .
81 Use of
82 .Nm
83 in a chroot configuration therefore requires that
84 .Xr syslogd 8
85 establish a logging socket inside the chroot directory.
86 .Sh SEE ALSO
87 .Xr sftp 1 ,
88 .Xr ssh 1 ,
89 .Xr sshd_config 5 ,
90 .Xr sshd 8
91 .Rs
92 .%A T. Ylonen
93 .%A S. Lehtinen
94 .%T "SSH File Transfer Protocol"
95 .%N draft-ietf-secsh-filexfer-00.txt
96 .%D January 2001
97 .%O work in progress material
98 .Re
99 .Sh HISTORY
101 first appeared in
102 .Ox 2.8 .
103 .Sh AUTHORS
104 .An Markus Friedl Aq markus@openbsd.org