Update the missing options (that make sense from ssh_config)
This commit is contained in:
parent
f627055bc7
commit
d93f137c8f
15
sshfs.c
15
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,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue