From d93f137c8fee0d8cbe15287e4f23ad9fe9d354dd Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Mon, 3 Apr 2017 10:06:56 +0200 Subject: Update the missing options (that make sense from ssh_config) --- sshfs.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/sshfs.c b/sshfs.c index 8cde971..3edd1ab 100644 --- a/sshfs.c +++ b/sshfs.c @@ -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, }; -- cgit v1.2.3 From 110163d8d17ac267339fb685c0eb1f96a164eaca Mon Sep 17 00:00:00 2001 From: tpoindessous Date: Thu, 16 Feb 2017 14:48:08 +0100 Subject: Update README.md for macOS On macOS, we don't have fusermount, so we use umount command. Thanks. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 8913bd6..56a4d72 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,9 @@ To unmount the filesystem: fusermount -u mountpoint +On macOS, to unmount the filesystem: + + umount mountpoint Installing ========== -- cgit v1.2.3