diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2017-05-31 13:52:44 -0700 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2017-05-31 13:52:44 -0700 |
commit | 2896aed825d818f4e34c292c9651337b6467c3f6 (patch) | |
tree | a4734ebe2d6f1225dfe08d17963b0e7ce09c66ad | |
parent | 1dbda317865c49825de733e210fc6119d3ee1576 (diff) | |
parent | 110163d8d17ac267339fb685c0eb1f96a164eaca (diff) | |
download | sshfs-2896aed825d818f4e34c292c9651337b6467c3f6.tar sshfs-2896aed825d818f4e34c292c9651337b6467c3f6.tar.gz sshfs-2896aed825d818f4e34c292c9651337b6467c3f6.tar.bz2 sshfs-2896aed825d818f4e34c292c9651337b6467c3f6.zip |
Merge branch 'master' of github.com:libfuse/sshfs
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | sshfs.c | 15 |
2 files changed, 18 insertions, 0 deletions
@@ -52,6 +52,9 @@ To unmount the filesystem: fusermount -u mountpoint +On macOS, to unmount the filesystem: + + umount mountpoint Installing ========== @@ -297,6 +297,7 @@ static const char *ssh_opts[] = { "AddressFamily", "BatchMode", "BindAddress", + "CertificateFile", "ChallengeResponseAuthentication", "CheckHostIP", "Cipher", @@ -307,28 +308,40 @@ static const char *ssh_opts[] = { "ConnectTimeout", "ControlMaster", "ControlPath", + "ControlPersist", + "FingerprintHash", "GlobalKnownHostsFile", "GSSAPIAuthentication", "GSSAPIDelegateCredentials", "HostbasedAuthentication", + "HostbasedKeyTypes", "HostKeyAlgorithms", "HostKeyAlias", "HostName", "IdentitiesOnly", "IdentityFile", + "IdentityAgent", + "IPQoS", "KbdInteractiveAuthentication", "KbdInteractiveDevices", + "KexAlgorithms", "LocalCommand", "LogLevel", "MACs", "NoHostAuthenticationForLocalhost", "NumberOfPasswordPrompts", "PasswordAuthentication", + "PermitLocalCommand", + "PKCS11Provider", "Port", "PreferredAuthentications", "ProxyCommand", + "ProxyJump", + "ProxyUseFdpass", + "PubkeyAcceptedKeyTypes" "PubkeyAuthentication", "RekeyLimit", + "RevokedHostKeys", "RhostsRSAAuthentication", "RSAAuthentication", "ServerAliveCountMax", @@ -336,9 +349,11 @@ static const char *ssh_opts[] = { "SmartcardDevice", "StrictHostKeyChecking", "TCPKeepAlive", + "UpdateHostKeys", "UsePrivilegedPort", "UserKnownHostsFile", "VerifyHostKeyDNS", + "VisualHostKey", NULL, }; |