mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-04-25 04:38:20 +00:00
- markus@cvs.openbsd.org 2001/07/22 22:04:19
[readconf.c ssh.1] enable challenge-response auth by default; ok millert@
This commit is contained in:
parent
e2b9b06425
commit
0076d75c25
@ -7,6 +7,9 @@
|
|||||||
[ssh.1]
|
[ssh.1]
|
||||||
There is no option "Compress", point to "Compression" instead; ok
|
There is no option "Compress", point to "Compression" instead; ok
|
||||||
markus
|
markus
|
||||||
|
- markus@cvs.openbsd.org 2001/07/22 22:04:19
|
||||||
|
[readconf.c ssh.1]
|
||||||
|
enable challenge-response auth by default; ok millert@
|
||||||
|
|
||||||
20010803
|
20010803
|
||||||
- (djm) Fix interrupted read in entropy gatherer. Spotted by markus@ on
|
- (djm) Fix interrupted read in entropy gatherer. Spotted by markus@ on
|
||||||
@ -6117,4 +6120,4 @@
|
|||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1427 2001/08/06 20:50:55 mouring Exp $
|
$Id: ChangeLog,v 1.1428 2001/08/06 20:53:26 mouring Exp $
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: readconf.c,v 1.82 2001/06/26 16:15:23 dugsong Exp $");
|
RCSID("$OpenBSD: readconf.c,v 1.83 2001/07/22 22:04:19 markus Exp $");
|
||||||
|
|
||||||
#include "ssh.h"
|
#include "ssh.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
@ -803,7 +803,7 @@ fill_default_options(Options * options)
|
|||||||
if (options->pubkey_authentication == -1)
|
if (options->pubkey_authentication == -1)
|
||||||
options->pubkey_authentication = 1;
|
options->pubkey_authentication = 1;
|
||||||
if (options->challenge_response_authentication == -1)
|
if (options->challenge_response_authentication == -1)
|
||||||
options->challenge_response_authentication = 0;
|
options->challenge_response_authentication = 1;
|
||||||
#if defined(KRB4) || defined(KRB5)
|
#if defined(KRB4) || defined(KRB5)
|
||||||
if (options->kerberos_authentication == -1)
|
if (options->kerberos_authentication == -1)
|
||||||
options->kerberos_authentication = 1;
|
options->kerberos_authentication = 1;
|
||||||
|
7
ssh.1
7
ssh.1
@ -34,7 +34,7 @@
|
|||||||
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
.\"
|
.\"
|
||||||
.\" $OpenBSD: ssh.1,v 1.121 2001/07/22 21:32:42 pvalchev Exp $
|
.\" $OpenBSD: ssh.1,v 1.122 2001/07/22 22:04:19 markus Exp $
|
||||||
.Dd September 25, 1999
|
.Dd September 25, 1999
|
||||||
.Dt SSH 1
|
.Dt SSH 1
|
||||||
.Os
|
.Os
|
||||||
@ -1012,15 +1012,12 @@ The default is
|
|||||||
Note that this option applies to protocol version 1 only.
|
Note that this option applies to protocol version 1 only.
|
||||||
.It Cm ChallengeResponseAuthentication
|
.It Cm ChallengeResponseAuthentication
|
||||||
Specifies whether to use challenge response authentication.
|
Specifies whether to use challenge response authentication.
|
||||||
Currently there is only support for
|
|
||||||
.Xr skey 1
|
|
||||||
authentication.
|
|
||||||
The argument to this keyword must be
|
The argument to this keyword must be
|
||||||
.Dq yes
|
.Dq yes
|
||||||
or
|
or
|
||||||
.Dq no .
|
.Dq no .
|
||||||
The default is
|
The default is
|
||||||
.Dq no .
|
.Dq yes .
|
||||||
.It Cm StrictHostKeyChecking
|
.It Cm StrictHostKeyChecking
|
||||||
If this flag is set to
|
If this flag is set to
|
||||||
.Dq yes ,
|
.Dq yes ,
|
||||||
|
Loading…
Reference in New Issue
Block a user