|
Lines 97-106
Link Here
|
| 97 |
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts, |
97 |
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts, |
| 98 |
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression, |
98 |
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression, |
| 99 |
oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, |
99 |
oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, |
| 100 |
oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs, |
100 |
oUsePrivilegedPort, oTryOutgoingPrivilegedPort, oLogLevel, oCiphers, |
| 101 |
oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication, |
101 |
oProtocol, oMacs, oGlobalKnownHostsFile2, oUserKnownHostsFile2, |
| 102 |
oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias, |
102 |
oPubkeyAuthentication, oKbdInteractiveAuthentication, |
| 103 |
oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication, |
103 |
oKbdInteractiveDevices, oHostKeyAlias, oDynamicForward, |
|
|
104 |
oPreferredAuthentications, oHostbasedAuthentication, |
| 104 |
oHostKeyAlgorithms, oBindAddress, oSmartcardDevice, |
105 |
oHostKeyAlgorithms, oBindAddress, oSmartcardDevice, |
| 105 |
oClearAllForwardings, oNoHostAuthenticationForLocalhost, |
106 |
oClearAllForwardings, oNoHostAuthenticationForLocalhost, |
| 106 |
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout, |
107 |
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout, |
|
Lines 119-124
Link Here
|
| 119 |
{ "xauthlocation", oXAuthLocation }, |
120 |
{ "xauthlocation", oXAuthLocation }, |
| 120 |
{ "gatewayports", oGatewayPorts }, |
121 |
{ "gatewayports", oGatewayPorts }, |
| 121 |
{ "useprivilegedport", oUsePrivilegedPort }, |
122 |
{ "useprivilegedport", oUsePrivilegedPort }, |
|
|
123 |
{ "tryoutgoingprivilegedport", oTryOutgoingPrivilegedPort }, |
| 122 |
{ "rhostsauthentication", oDeprecated }, |
124 |
{ "rhostsauthentication", oDeprecated }, |
| 123 |
{ "passwordauthentication", oPasswordAuthentication }, |
125 |
{ "passwordauthentication", oPasswordAuthentication }, |
| 124 |
{ "kbdinteractiveauthentication", oKbdInteractiveAuthentication }, |
126 |
{ "kbdinteractiveauthentication", oKbdInteractiveAuthentication }, |
|
Lines 350-355
Link Here
|
| 350 |
intptr = &options->use_privileged_port; |
352 |
intptr = &options->use_privileged_port; |
| 351 |
goto parse_flag; |
353 |
goto parse_flag; |
| 352 |
|
354 |
|
|
|
355 |
case oTryOutgoingPrivilegedPort: |
| 356 |
intptr = &options->try_outgoing_privileged_port; |
| 357 |
goto parse_flag; |
| 358 |
|
| 353 |
case oPasswordAuthentication: |
359 |
case oPasswordAuthentication: |
| 354 |
intptr = &options->password_authentication; |
360 |
intptr = &options->password_authentication; |
| 355 |
goto parse_flag; |
361 |
goto parse_flag; |
|
Lines 809-814
Link Here
|
| 809 |
options->xauth_location = NULL; |
815 |
options->xauth_location = NULL; |
| 810 |
options->gateway_ports = -1; |
816 |
options->gateway_ports = -1; |
| 811 |
options->use_privileged_port = -1; |
817 |
options->use_privileged_port = -1; |
|
|
818 |
options->try_outgoing_privileged_port = -1; |
| 812 |
options->rsa_authentication = -1; |
819 |
options->rsa_authentication = -1; |
| 813 |
options->pubkey_authentication = -1; |
820 |
options->pubkey_authentication = -1; |
| 814 |
options->challenge_response_authentication = -1; |
821 |
options->challenge_response_authentication = -1; |
|
Lines 878-883
Link Here
|
| 878 |
options->gateway_ports = 0; |
885 |
options->gateway_ports = 0; |
| 879 |
if (options->use_privileged_port == -1) |
886 |
if (options->use_privileged_port == -1) |
| 880 |
options->use_privileged_port = 0; |
887 |
options->use_privileged_port = 0; |
|
|
888 |
if (options->try_outgoing_privileged_port == -1) |
| 889 |
options->try_outgoing_privileged_port = 0; |
| 881 |
if (options->rsa_authentication == -1) |
890 |
if (options->rsa_authentication == -1) |
| 882 |
options->rsa_authentication = 1; |
891 |
options->rsa_authentication = 1; |
| 883 |
if (options->pubkey_authentication == -1) |
892 |
if (options->pubkey_authentication == -1) |