summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/sftp.1 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* some certificatefile tweaks; ok djmjmc2015-09-251-2/+3
|
* Add a ssh_config HostbasedKeyType option to control whichdjm2015-01-301-2/+3
| | | | | | | | | host public key types are tried during hostbased authentication. This may be used to prevent too many keys being sent to the server, and blowing past its MaxAuthTries limit. bz#2211 based on patch by Iain Morgan; ok markus@
* correct description of UpdateHostKeys in ssh_config.5 anddjm2015-01-261-2/+3
| | | | | add it to -o lists for ssh, scp and sftp; pointed out by jmc@
* zap eol whitespace;jmc2014-04-221-6/+6
|
* Document sftp upload resume.logan2014-04-221-8/+29
| | | | OK from djm@, with feedback from okan@.
* add canonicalisation options to -o listsdjm2013-10-201-2/+7
|
* tweak previous;jmc2013-10-171-2/+2
|
* fsync@openssh.com protocol extension for sftp-serverdjm2013-10-171-5/+24
| | | | | | client support to allow calling fsync() faster successful transfer patch mostly by imorgan AT nas.nasa.gov; bz#1798 "fine" markus@ "grumble OK" deraadt@ "doesn't sound bad to me" millert@
* sort -a;jmc2013-08-071-8/+8
|
* document top-level -a option (the -a option to 'get' was already documented)djm2013-08-061-5/+10
|
* sftp support for resuming partial downloads; patch mostly by Loganadendjm2013-07-251-4/+24
| | | | | Velvindron/AfriNIC with some tweaks by me; feedback and ok dtucker@ "Just be careful" deraadt@
* mention ControlPersist and KbdInteractiveAuthentication in the -odjm2011-09-051-2/+4
| | | | verbiage in these pages too (prompted by jmc@)
* typo, fix from Laurent Gautrotdtucker2011-08-071-3/+3
|
* mention that IPv6 addresses must be enclosed in square brackets;djm2011-05-061-2/+6
| | | | bz#1845
* add a protocol extension to support a hard link operation. It isdjm2010-12-041-5/+13
| | | | | | | available through the "ln" command in the client. The old "ln" behaviour of creating a symlink is available using its "-s" option or through the preexisting "symlink" command; based on a patch from miklos AT szeredi.hu in bz#1555; ok markus@
* add IPQoS to the various -o lists, and zap some trailing whitespace;jmc2010-11-181-2/+3
|
* add KexAlgorithms to the -o list;jmc2010-09-231-2/+3
|
* add an option per-read/write callback to atomiciodjm2010-09-221-2/+5
| | | | | | | | | factor out bandwidth limiting code from scp(1) into a generic bandwidth limiter that can be attached using the atomicio callback mechanism add a bandwidth limit option to sftp(1) using the above "very nice" markus@
* more wacky macro fixing;jmc2010-09-191-4/+6
|
* replace our obsolete smartcard code with PKCS#11.markus2010-02-081-3/+3
| | | | | | | | | ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs-11v2-20.pdf ssh(1) and ssh-keygen(1) use dlopen(3) directly to talk to a PKCS#11 provider (shared library) while ssh-agent(1) delegates PKCS#11 to a forked a ssh-pkcs11-helper process. PKCS#11 is currently a compile time option. feedback and ok djm@; inspired by patches from Alon Bar-Lev
* sftp.1: put ls -h in the right placejmc2010-01-131-5/+5
| | | | | | | sftp.c: as above, plus add -p to get/put, and shorten their arg names to keep the help usage nicely aligned ok djm
* support '-h' (human-readable units) for sftp's ls command, just likedjm2010-01-131-3/+8
| | | | ls(1); ok dtucker@
* Remove RoutingDomain from ssh since it's now not needed. It can be replaceddtucker2010-01-091-3/+2
| | | | | | | | | | | | | with "route exec" or "nc -V" as a proxycommand. "route exec" also ensures that trafic such as DNS lookups stays withing the specified routingdomain. For example (from reyk): # route -T 2 exec /usr/sbin/sshd or inherited from the parent process $ route -T 2 exec sh $ ssh 10.1.2.3 ok deraadt@ markus@ stevesk@ reyk@
* Rename RDomain config option to RoutingDomain to be more clear andstevesk2009-12-291-3/+3
| | | | | | | | | consistent with other options. NOTE: if you currently use RDomain in the ssh client or server config, or ssh/sshd -o, you must update to use RoutingDomain. ok markus@ djm@
* tweak previous;jmc2009-10-281-2/+2
|
* Allow to set the rdomain in ssh/sftp/scp/sshd and ssh-keyscan.reyk2009-10-281-2/+3
| | | | ok markus@
* ether -> either;jmc2009-08-191-3/+3
|
* fix "get" command usage, spotted by jmc@djm2009-08-181-3/+3
|
* recursive transfer support for get/put and on the commandlinedjm2009-08-181-8/+36
| | | | | work mostly by carlosvsilvapt@gmail.com for the Google Summer of Code with some tweaks by me; "go for it" deraadt@
* sync synopsis and usage();jmc2009-08-131-2/+2
|
* Swizzle options: "-P sftp_server_path" moves to "-D sftp_server_path",djm2009-08-131-8/+11
| | | | | | | | add "-P port" to match scp(1). Fortunately, the -P option is only really used by our regression scripts. part of larger patch from carlosvsilvapt@gmail.com for his Google Summer of Code work; ok deraadt markus
* sort options;jmc2009-08-121-5/+5
|
* support most of scp(1)'s commandline arguments in sftp(1), as a firstdjm2009-08-121-3/+28
| | | | | | | | | step towards making sftp(1) a drop-in replacement for scp(1). One conflicting option (-P) has not been changed, pending further discussion. Patch from carlosvsilvapt@gmail.com as part of his work in the Google Summer of Code
* update for the synopses displayed by the 'help' command, there are asobrado2008-12-091-3/+3
| | | | | | | | few missing flags; add 'bye' to the output of 'help'; sorting and spacing. jmc@ suggested replacing .Oo/.Oc with a single .Op macro. ok jmc@
* correct sftp(1) and corresponding usage syntax;djm2008-12-091-7/+6
| | | | bz#1518 patch from imorgan AT nas.nasa.gov; ok deraadt@ improved diff jmc@
* number of pipelined requests is not 64; prodded by Iain.Morgan AT nasa.govdjm2008-07-151-3/+3
|
* macro fixage;jmc2008-04-181-2/+3
|
* introduce sftp extension methods statvfs@openssh.com anddjm2008-04-181-3/+21
| | | | | | | | | | | fstatvfs@openssh.com that implement statvfs(2)-like operations, based on a patch from miklos AT szeredi.hu (bz#1399) also add a "df" command to the sftp client that uses the statvfs@openssh.com to produce a df(1)-like display of filesystem space and inode utilisation ok markus@
* convert to new .Dd format;jmc2007-05-311-2/+2
|
* Document RekeyLimit. Based on patch from jan.iven at cern.ch from mindrot #1056dtucker2006-01-201-1/+2
| | | | with feedback from jmc, djm and markus; ok jmc@ djm@
* do not suggest that interactive authentication will workjmc2005-12-301-2/+2
| | | | | | | with the -b flag; based on a diff from john l. scarfone; ok djm
* add HashKnownHosts to -o list;jmc2005-03-011-1/+2
| | | | ok markus@
* - explain that patterns can be used as arguments in get/put/ls/etcjaredy2004-12-051-31/+85
| | | | | | | | commands (prodded by Michael Knudsen) - describe ls flags as a list - other minor improvements ok jmc, djm
* missing full stop;jmc2004-11-291-2/+2
|
* document KbdInteractiveDevices; ok markus@djm2004-10-071-1/+2
|
* document sort optionsdjm2004-06-211-1/+15
|
* mention new -n flagdjm2004-06-201-1/+5
|
* implement session multiplexing in the client (the server has supported thisdjm2004-06-131-1/+3
| | | | since 2.0); ok markus@
* ConnectionTimeout -> ConnectTimeout here too, pointed out by jmc@dtucker2004-05-021-2/+2
|
* add SendEnv to -o list;jmc2004-04-281-1/+2
|