Make "CheckHostIP" default to off. This was proposed on -security and

earlier IRC, but despite my inital feeling against it, this seems
the more proper thing to do.

Proposed by:	rwatson
This commit is contained in:
Brian Feldman 2000-02-25 03:04:29 +00:00
parent 18a711954e
commit a95c122521
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=57465

View File

@ -11,6 +11,7 @@
*
* Functions for reading the configuration files.
*
* $FreeBSD$
*/
#include "includes.h"
@ -670,7 +671,7 @@ fill_default_options(Options * options)
if (options->batch_mode == -1)
options->batch_mode = 0;
if (options->check_host_ip == -1)
options->check_host_ip = 1;
options->check_host_ip = 0;
if (options->strict_host_key_checking == -1)
options->strict_host_key_checking = 2; /* 2 is default */
if (options->compression == -1)