diff options
author | Junichi Uekawa <dancer@netfort.gr.jp> | 2020-11-02 19:51:48 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-02 10:51:48 +0000 |
commit | 9e01ffd161591f87dd7ef02ab2a0f0aecd800a00 (patch) | |
tree | 468299e41cc5f8039784754e14ee1e6db6fc3b9f /sshfs.rst | |
parent | de0504e45b3cf8c803585c1d4e6001db0223e078 (diff) | |
download | sshfs-9e01ffd161591f87dd7ef02ab2a0f0aecd800a00.tar sshfs-9e01ffd161591f87dd7ef02ab2a0f0aecd800a00.tar.gz sshfs-9e01ffd161591f87dd7ef02ab2a0f0aecd800a00.tar.bz2 sshfs-9e01ffd161591f87dd7ef02ab2a0f0aecd800a00.zip |
Rename option to 'passive' and add some example in manual. (#232)
Diffstat (limited to 'sshfs.rst')
-rw-r--r-- | sshfs.rst | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -156,8 +156,11 @@ Options -o directport=PORT directly connect to PORT bypassing ssh --o slave - communicate over stdin and stdout bypassing network +-o passive + communicate over stdin and stdout bypassing network. Useful for + mounting local filesystem on the remote side. An example using + dpipe command would be ``dpipe /usr/lib/openssh/sftp-server = ssh + RemoteHostname sshfs :/directory/to/be/shared ~/mnt/src -o passive`` -o disable_hardlink With this option set, attempts to call `link(2)` will fail with @@ -223,7 +226,7 @@ Options to use. Each connection is established with a separate SSH process. The primary purpose of this feature is to improve the responsiveness of the file system during large file transfers. When using more than once - connection, the *password_stdin* and *slave* options can not be + connection, the *password_stdin* and *passive* options can not be used, and the *buflimit* workaround is not supported. In addition, SSHFS accepts several options common to all FUSE file |