|
Lines 91-96
Link Here
|
| 91 |
options->kerberos_get_afs_token = -1; |
91 |
options->kerberos_get_afs_token = -1; |
| 92 |
options->gss_authentication=-1; |
92 |
options->gss_authentication=-1; |
| 93 |
options->gss_cleanup_creds = -1; |
93 |
options->gss_cleanup_creds = -1; |
|
|
94 |
options->gss_strict_acceptor = -1; |
| 94 |
options->password_authentication = -1; |
95 |
options->password_authentication = -1; |
| 95 |
options->kbd_interactive_authentication = -1; |
96 |
options->kbd_interactive_authentication = -1; |
| 96 |
options->challenge_response_authentication = -1; |
97 |
options->challenge_response_authentication = -1; |
|
Lines 206-211
Link Here
|
| 206 |
options->gss_authentication = 0; |
207 |
options->gss_authentication = 0; |
| 207 |
if (options->gss_cleanup_creds == -1) |
208 |
if (options->gss_cleanup_creds == -1) |
| 208 |
options->gss_cleanup_creds = 1; |
209 |
options->gss_cleanup_creds = 1; |
|
|
210 |
if (options->gss_strict_acceptor == -1) |
| 211 |
options->gss_strict_acceptor = 0; |
| 209 |
if (options->password_authentication == -1) |
212 |
if (options->password_authentication == -1) |
| 210 |
options->password_authentication = 1; |
213 |
options->password_authentication = 1; |
| 211 |
if (options->kbd_interactive_authentication == -1) |
214 |
if (options->kbd_interactive_authentication == -1) |
|
Lines 290-296
Link Here
|
| 290 |
sBanner, sUseDNS, sHostbasedAuthentication, |
293 |
sBanner, sUseDNS, sHostbasedAuthentication, |
| 291 |
sHostbasedUsesNameFromPacketOnly, sClientAliveInterval, |
294 |
sHostbasedUsesNameFromPacketOnly, sClientAliveInterval, |
| 292 |
sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2, |
295 |
sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2, |
| 293 |
sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel, |
296 |
sGssAuthentication, sGssCleanupCreds, sGssStrictAcceptor, |
|
|
297 |
sAcceptEnv, sPermitTunnel, |
| 294 |
sMatch, sPermitOpen, sForceCommand, |
298 |
sMatch, sPermitOpen, sForceCommand, |
| 295 |
sUsePrivilegeSeparation, |
299 |
sUsePrivilegeSeparation, |
| 296 |
sDeprecated, sUnsupported |
300 |
sDeprecated, sUnsupported |
|
Lines 351-359
Link Here
|
| 351 |
#ifdef GSSAPI |
355 |
#ifdef GSSAPI |
| 352 |
{ "gssapiauthentication", sGssAuthentication, SSHCFG_GLOBAL }, |
356 |
{ "gssapiauthentication", sGssAuthentication, SSHCFG_GLOBAL }, |
| 353 |
{ "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL }, |
357 |
{ "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL }, |
|
|
358 |
{ "gssapistrictacceptorcheck", sGssStrictAcceptor, SSHCFG_GLOBAL }, |
| 354 |
#else |
359 |
#else |
| 355 |
{ "gssapiauthentication", sUnsupported, SSHCFG_GLOBAL }, |
360 |
{ "gssapiauthentication", sUnsupported, SSHCFG_GLOBAL }, |
| 356 |
{ "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL }, |
361 |
{ "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL }, |
|
|
362 |
{ "gssapistrictacceptorcheck", sUnsupported, SSHCFG_GLOBAL }, |
| 357 |
#endif |
363 |
#endif |
| 358 |
{ "passwordauthentication", sPasswordAuthentication, SSHCFG_GLOBAL }, |
364 |
{ "passwordauthentication", sPasswordAuthentication, SSHCFG_GLOBAL }, |
| 359 |
{ "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_GLOBAL }, |
365 |
{ "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_GLOBAL }, |
|
Lines 876-881
Link Here
|
| 876 |
intptr = &options->gss_cleanup_creds; |
882 |
intptr = &options->gss_cleanup_creds; |
| 877 |
goto parse_flag; |
883 |
goto parse_flag; |
| 878 |
|
884 |
|
|
|
885 |
case sGssStrictAcceptor: |
| 886 |
intptr = &options->gss_strict_acceptor; |
| 887 |
goto parse_flag; |
| 888 |
|
| 879 |
case sPasswordAuthentication: |
889 |
case sPasswordAuthentication: |
| 880 |
intptr = &options->password_authentication; |
890 |
intptr = &options->password_authentication; |
| 881 |
goto parse_flag; |
891 |
goto parse_flag; |