|
Lines 126-131
Link Here
|
| 126 |
oClearAllForwardings, oNoHostAuthenticationForLocalhost, |
126 |
oClearAllForwardings, oNoHostAuthenticationForLocalhost, |
| 127 |
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout, |
127 |
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout, |
| 128 |
oAddressFamily, oGssAuthentication, oGssDelegateCreds, |
128 |
oAddressFamily, oGssAuthentication, oGssDelegateCreds, |
|
|
129 |
oGssTrustDns, |
| 129 |
oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly, |
130 |
oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly, |
| 130 |
oSendEnv, oControlPath, oControlMaster, oHashKnownHosts, |
131 |
oSendEnv, oControlPath, oControlMaster, oHashKnownHosts, |
| 131 |
oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand, |
132 |
oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand, |
|
Lines 163-171
Link Here
|
| 163 |
#if defined(GSSAPI) |
164 |
#if defined(GSSAPI) |
| 164 |
{ "gssapiauthentication", oGssAuthentication }, |
165 |
{ "gssapiauthentication", oGssAuthentication }, |
| 165 |
{ "gssapidelegatecredentials", oGssDelegateCreds }, |
166 |
{ "gssapidelegatecredentials", oGssDelegateCreds }, |
|
|
167 |
{ "gssapitrustdns", oGssTrustDns }, |
| 166 |
#else |
168 |
#else |
| 167 |
{ "gssapiauthentication", oUnsupported }, |
169 |
{ "gssapiauthentication", oUnsupported }, |
| 168 |
{ "gssapidelegatecredentials", oUnsupported }, |
170 |
{ "gssapidelegatecredentials", oUnsupported }, |
|
|
171 |
{ "gssapitrustdns", oUnsupported }, |
| 169 |
#endif |
172 |
#endif |
| 170 |
{ "fallbacktorsh", oDeprecated }, |
173 |
{ "fallbacktorsh", oDeprecated }, |
| 171 |
{ "usersh", oDeprecated }, |
174 |
{ "usersh", oDeprecated }, |
|
Lines 444-449
Link Here
|
| 444 |
intptr = &options->gss_deleg_creds; |
447 |
intptr = &options->gss_deleg_creds; |
| 445 |
goto parse_flag; |
448 |
goto parse_flag; |
| 446 |
|
449 |
|
|
|
450 |
case oGssTrustDns: |
| 451 |
intptr = &options->gss_trust_dns; |
| 452 |
goto parse_flag; |
| 453 |
|
| 447 |
case oBatchMode: |
454 |
case oBatchMode: |
| 448 |
intptr = &options->batch_mode; |
455 |
intptr = &options->batch_mode; |
| 449 |
goto parse_flag; |
456 |
goto parse_flag; |
|
Lines 1010-1015
Link Here
|
| 1010 |
options->challenge_response_authentication = -1; |
1017 |
options->challenge_response_authentication = -1; |
| 1011 |
options->gss_authentication = -1; |
1018 |
options->gss_authentication = -1; |
| 1012 |
options->gss_deleg_creds = -1; |
1019 |
options->gss_deleg_creds = -1; |
|
|
1020 |
options->gss_trust_dns = -1; |
| 1013 |
options->password_authentication = -1; |
1021 |
options->password_authentication = -1; |
| 1014 |
options->kbd_interactive_authentication = -1; |
1022 |
options->kbd_interactive_authentication = -1; |
| 1015 |
options->kbd_interactive_devices = NULL; |
1023 |
options->kbd_interactive_devices = NULL; |
|
Lines 1100-1105
Link Here
|
| 1100 |
options->gss_authentication = 0; |
1108 |
options->gss_authentication = 0; |
| 1101 |
if (options->gss_deleg_creds == -1) |
1109 |
if (options->gss_deleg_creds == -1) |
| 1102 |
options->gss_deleg_creds = 0; |
1110 |
options->gss_deleg_creds = 0; |
|
|
1111 |
if (options->gss_trust_dns == -1) |
| 1112 |
options->gss_trust_dns = 0; |
| 1103 |
if (options->password_authentication == -1) |
1113 |
if (options->password_authentication == -1) |
| 1104 |
options->password_authentication = 1; |
1114 |
options->password_authentication = 1; |
| 1105 |
if (options->kbd_interactive_authentication == -1) |
1115 |
if (options->kbd_interactive_authentication == -1) |