diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-04-18 21:47:38 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-04-18 21:47:38 +0800 |
commit | 43769b5bb370cb932012eccb3bca7487955760f0 (patch) | |
tree | 121d90f5f33147bcdff942efe0d935636475b645 /options.h | |
parent | f98eb5808bd5fbdf7463f2d7233bb3cc52b12f89 (diff) |
Don't enable CLI_IMMEDIATE_AUTH by default, it breaks blank password logins
Diffstat (limited to 'options.h')
-rw-r--r-- | options.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -204,6 +204,13 @@ much traffic. */ * return the password on standard output */ /*#define ENABLE_CLI_ASKPASS_HELPER*/ +/* Send a real auth request first rather than requesting a list of available methods. + * It saves a network round trip at login but prevents immediate login to + * accounts with no password, and might be rejected by some strict servers (none + * encountered yet) - hence it isn't enabled by default. */ +/* #define CLI_IMMEDIATE_AUTH */ + + /* Source for randomness. This must be able to provide hundreds of bytes per SSH * connection without blocking. In addition /dev/random is used for seeding * rsa/dss key generation */ |