github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/docs/content/commands/rclone_serve_sftp.md (about) 1 --- 2 title: "rclone serve sftp" 3 description: "Serve the remote over SFTP." 4 slug: rclone_serve_sftp 5 url: /commands/rclone_serve_sftp/ 6 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/serve/sftp/ and as part of making a release run "make commanddocs" 7 --- 8 # rclone serve sftp 9 10 Serve the remote over SFTP. 11 12 ## Synopsis 13 14 rclone serve sftp implements an SFTP server to serve the remote 15 over SFTP. This can be used with an SFTP client or you can make a 16 remote of type sftp to use with it. 17 18 You can use the filter flags (eg --include, --exclude) to control what 19 is served. 20 21 The server will log errors. Use -v to see access logs. 22 23 --bwlimit will be respected for file transfers. Use --stats to 24 control the stats printing. 25 26 You must provide some means of authentication, either with --user/--pass, 27 an authorized keys file (specify location with --authorized-keys - the 28 default is the same as ssh), an --auth-proxy, or set the --no-auth flag for no 29 authentication when logging in. 30 31 Note that this also implements a small number of shell commands so 32 that it can provide md5sum/sha1sum/df information for the rclone sftp 33 backend. This means that is can support SHA1SUMs, MD5SUMs and the 34 about command when paired with the rclone sftp backend. 35 36 If you don't supply a --key then rclone will generate one and cache it 37 for later use. 38 39 By default the server binds to localhost:2022 - if you want it to be 40 reachable externally then supply "--addr :2022" for example. 41 42 Note that the default of "--vfs-cache-mode off" is fine for the rclone 43 sftp backend, but it may not be with other SFTP clients. 44 45 46 ## Directory Cache 47 48 Using the `--dir-cache-time` flag, you can set how long a 49 directory should be considered up to date and not refreshed from the 50 backend. Changes made locally in the mount may appear immediately or 51 invalidate the cache. However, changes done on the remote will only 52 be picked up once the cache expires if the backend configured does not 53 support polling for changes. If the backend supports polling, changes 54 will be picked up on within the polling interval. 55 56 Alternatively, you can send a `SIGHUP` signal to rclone for 57 it to flush all directory caches, regardless of how old they are. 58 Assuming only one rclone instance is running, you can reset the cache 59 like this: 60 61 kill -SIGHUP $(pidof rclone) 62 63 If you configure rclone with a [remote control](/rc) then you can use 64 rclone rc to flush the whole directory cache: 65 66 rclone rc vfs/forget 67 68 Or individual files or directories: 69 70 rclone rc vfs/forget file=path/to/file dir=path/to/dir 71 72 ## File Buffering 73 74 The `--buffer-size` flag determines the amount of memory, 75 that will be used to buffer data in advance. 76 77 Each open file descriptor will try to keep the specified amount of 78 data in memory at all times. The buffered data is bound to one file 79 descriptor and won't be shared between multiple open file descriptors 80 of the same file. 81 82 This flag is a upper limit for the used memory per file descriptor. 83 The buffer will only use memory for data that is downloaded but not 84 not yet read. If the buffer is empty, only a small amount of memory 85 will be used. 86 The maximum memory used by rclone for buffering can be up to 87 `--buffer-size * open files`. 88 89 ## File Caching 90 91 These flags control the VFS file caching options. The VFS layer is 92 used by rclone mount to make a cloud storage system work more like a 93 normal file system. 94 95 You'll need to enable VFS caching if you want, for example, to read 96 and write simultaneously to a file. See below for more details. 97 98 Note that the VFS cache works in addition to the cache backend and you 99 may find that you need one or the other or both. 100 101 --cache-dir string Directory rclone will use for caching. 102 --vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s) 103 --vfs-cache-mode string Cache mode off|minimal|writes|full (default "off") 104 --vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s) 105 --vfs-cache-max-size int Max total size of objects in the cache. (default off) 106 107 If run with `-vv` rclone will print the location of the file cache. The 108 files are stored in the user cache file area which is OS dependent but 109 can be controlled with `--cache-dir` or setting the appropriate 110 environment variable. 111 112 The cache has 4 different modes selected by `--vfs-cache-mode`. 113 The higher the cache mode the more compatible rclone becomes at the 114 cost of using disk space. 115 116 Note that files are written back to the remote only when they are 117 closed so if rclone is quit or dies with open files then these won't 118 get written back to the remote. However they will still be in the on 119 disk cache. 120 121 If using --vfs-cache-max-size note that the cache may exceed this size 122 for two reasons. Firstly because it is only checked every 123 --vfs-cache-poll-interval. Secondly because open files cannot be 124 evicted from the cache. 125 126 ### --vfs-cache-mode off 127 128 In this mode the cache will read directly from the remote and write 129 directly to the remote without caching anything on disk. 130 131 This will mean some operations are not possible 132 133 * Files can't be opened for both read AND write 134 * Files opened for write can't be seeked 135 * Existing files opened for write must have O_TRUNC set 136 * Files open for read with O_TRUNC will be opened write only 137 * Files open for write only will behave as if O_TRUNC was supplied 138 * Open modes O_APPEND, O_TRUNC are ignored 139 * If an upload fails it can't be retried 140 141 ### --vfs-cache-mode minimal 142 143 This is very similar to "off" except that files opened for read AND 144 write will be buffered to disks. This means that files opened for 145 write will be a lot more compatible, but uses the minimal disk space. 146 147 These operations are not possible 148 149 * Files opened for write only can't be seeked 150 * Existing files opened for write must have O_TRUNC set 151 * Files opened for write only will ignore O_APPEND, O_TRUNC 152 * If an upload fails it can't be retried 153 154 ### --vfs-cache-mode writes 155 156 In this mode files opened for read only are still read directly from 157 the remote, write only and read/write files are buffered to disk 158 first. 159 160 This mode should support all normal file system operations. 161 162 If an upload fails it will be retried up to --low-level-retries times. 163 164 ### --vfs-cache-mode full 165 166 In this mode all reads and writes are buffered to and from disk. When 167 a file is opened for read it will be downloaded in its entirety first. 168 169 This may be appropriate for your needs, or you may prefer to look at 170 the cache backend which does a much more sophisticated job of caching, 171 including caching directory hierarchies and chunks of files. 172 173 In this mode, unlike the others, when a file is written to the disk, 174 it will be kept on the disk after it is written to the remote. It 175 will be purged on a schedule according to `--vfs-cache-max-age`. 176 177 This mode should support all normal file system operations. 178 179 If an upload or download fails it will be retried up to 180 --low-level-retries times. 181 182 ## Case Sensitivity 183 184 Linux file systems are case-sensitive: two files can differ only 185 by case, and the exact case must be used when opening a file. 186 187 Windows is not like most other operating systems supported by rclone. 188 File systems in modern Windows are case-insensitive but case-preserving: 189 although existing files can be opened using any case, the exact case used 190 to create the file is preserved and available for programs to query. 191 It is not allowed for two files in the same directory to differ only by case. 192 193 Usually file systems on macOS are case-insensitive. It is possible to make macOS 194 file systems case-sensitive but that is not the default 195 196 The "--vfs-case-insensitive" mount flag controls how rclone handles these 197 two cases. If its value is "false", rclone passes file names to the mounted 198 file system as is. If the flag is "true" (or appears without a value on 199 command line), rclone may perform a "fixup" as explained below. 200 201 The user may specify a file name to open/delete/rename/etc with a case 202 different than what is stored on mounted file system. If an argument refers 203 to an existing file with exactly the same name, then the case of the existing 204 file on the disk will be used. However, if a file name with exactly the same 205 name is not found but a name differing only by case exists, rclone will 206 transparently fixup the name. This fixup happens only when an existing file 207 is requested. Case sensitivity of file names created anew by rclone is 208 controlled by an underlying mounted file system. 209 210 Note that case sensitivity of the operating system running rclone (the target) 211 may differ from case sensitivity of a file system mounted by rclone (the source). 212 The flag controls whether "fixup" is performed to satisfy the target. 213 214 If the flag is not provided on command line, then its default value depends 215 on the operating system where rclone runs: "true" on Windows and macOS, "false" 216 otherwise. If the flag is provided without a value, then it is "true". 217 218 ## Auth Proxy 219 220 If you supply the parameter `--auth-proxy /path/to/program` then 221 rclone will use that program to generate backends on the fly which 222 then are used to authenticate incoming requests. This uses a simple 223 JSON based protocl with input on STDIN and output on STDOUT. 224 225 **PLEASE NOTE:** `--auth-proxy` and `--authorized-keys` cannot be used 226 together, if `--auth-proxy` is set the authorized keys option will be 227 ignored. 228 229 There is an example program 230 [bin/test_proxy.py](https://github.com/rclone/rclone/blob/master/test_proxy.py) 231 in the rclone source code. 232 233 The program's job is to take a `user` and `pass` on the input and turn 234 those into the config for a backend on STDOUT in JSON format. This 235 config will have any default parameters for the backend added, but it 236 won't use configuration from environment variables or command line 237 options - it is the job of the proxy program to make a complete 238 config. 239 240 This config generated must have this extra parameter 241 - `_root` - root to use for the backend 242 243 And it may have this parameter 244 - `_obscure` - comma separated strings for parameters to obscure 245 246 If password authentication was used by the client, input to the proxy 247 process (on STDIN) would look similar to this: 248 249 ``` 250 { 251 "user": "me", 252 "pass": "mypassword" 253 } 254 ``` 255 256 If public-key authentication was used by the client, input to the 257 proxy process (on STDIN) would look similar to this: 258 259 ``` 260 { 261 "user": "me", 262 "public_key": "AAAAB3NzaC1yc2EAAAADAQABAAABAQDuwESFdAe14hVS6omeyX7edc...JQdf" 263 } 264 ``` 265 266 And as an example return this on STDOUT 267 268 ``` 269 { 270 "type": "sftp", 271 "_root": "", 272 "_obscure": "pass", 273 "user": "me", 274 "pass": "mypassword", 275 "host": "sftp.example.com" 276 } 277 ``` 278 279 This would mean that an SFTP backend would be created on the fly for 280 the `user` and `pass`/`public_key` returned in the output to the host given. Note 281 that since `_obscure` is set to `pass`, rclone will obscure the `pass` 282 parameter before creating the backend (which is required for sftp 283 backends). 284 285 The program can manipulate the supplied `user` in any way, for example 286 to make proxy to many different sftp backends, you could make the 287 `user` be `user@example.com` and then set the `host` to `example.com` 288 in the output and the user to `user`. For security you'd probably want 289 to restrict the `host` to a limited list. 290 291 Note that an internal cache is keyed on `user` so only use that for 292 configuration, don't use `pass` or `public_key`. This also means that if a user's 293 password or public-key is changed the cache will need to expire (which takes 5 mins) 294 before it takes effect. 295 296 This can be used to build general purpose proxies to any kind of 297 backend that rclone supports. 298 299 300 ``` 301 rclone serve sftp remote:path [flags] 302 ``` 303 304 ## Options 305 306 ``` 307 --addr string IPaddress:Port or :Port to bind server to. (default "localhost:2022") 308 --auth-proxy string A program to use to create the backend from the auth. 309 --authorized-keys string Authorized keys file (default "~/.ssh/authorized_keys") 310 --dir-cache-time duration Time to cache directory entries for. (default 5m0s) 311 --dir-perms FileMode Directory permissions (default 0777) 312 --file-perms FileMode File permissions (default 0666) 313 --gid uint32 Override the gid field set by the filesystem. (default 1000) 314 -h, --help help for sftp 315 --key stringArray SSH private host key file (Can be multi-valued, leave blank to auto generate) 316 --no-auth Allow connections with no authentication if set. 317 --no-checksum Don't compare checksums on up/download. 318 --no-modtime Don't read/write the modification time (can speed things up). 319 --no-seek Don't allow seeking in files. 320 --pass string Password for authentication. 321 --poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s) 322 --read-only Mount read-only. 323 --uid uint32 Override the uid field set by the filesystem. (default 1000) 324 --umask int Override the permission bits set by the filesystem. (default 2) 325 --user string User name for authentication. 326 --vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s) 327 --vfs-cache-max-size SizeSuffix Max total size of objects in the cache. (default off) 328 --vfs-cache-mode CacheMode Cache mode off|minimal|writes|full (default off) 329 --vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s) 330 --vfs-case-insensitive If a file name not found, find a case insensitive match. 331 --vfs-read-chunk-size SizeSuffix Read the source objects in chunks. (default 128M) 332 --vfs-read-chunk-size-limit SizeSuffix If greater than --vfs-read-chunk-size, double the chunk size after each chunk read, until the limit is reached. 'off' is unlimited. (default off) 333 --vfs-read-wait duration Time to wait for in-sequence read before seeking. (default 20ms) 334 --vfs-write-wait duration Time to wait for in-sequence write before giving error. (default 1s) 335 ``` 336 337 See the [global flags page](/flags/) for global options not listed here. 338 339 ## SEE ALSO 340 341 * [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol. 342