summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2000-07-11 09:39:34 +0000
committerpeter <peter@FreeBSD.org>2000-07-11 09:39:34 +0000
commitadeace13951abfa7b773fc1e015bf629dfec9d07 (patch)
tree0e8b688cbdff1291ec7bb58b27305d8518af06ee
parent63c050d16ca6926933b42c7b93d2b09b9045b7b9 (diff)
downloadFreeBSD-src-adeace13951abfa7b773fc1e015bf629dfec9d07.zip
FreeBSD-src-adeace13951abfa7b773fc1e015bf629dfec9d07.tar.gz
Make FallBackToRsh off by default. Falling back to rsh by default is
silly in this day and age. Approved by: kris
-rw-r--r--crypto/openssh/readconf.c2
-rw-r--r--crypto/openssh/ssh_config2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssh/readconf.c b/crypto/openssh/readconf.c
index bad4c15..887d151 100644
--- a/crypto/openssh/readconf.c
+++ b/crypto/openssh/readconf.c
@@ -755,7 +755,7 @@ fill_default_options(Options * options)
if (options->rhosts_rsa_authentication == -1)
options->rhosts_rsa_authentication = 1;
if (options->fallback_to_rsh == -1)
- options->fallback_to_rsh = 1;
+ options->fallback_to_rsh = 0;
if (options->use_rsh == -1)
options->use_rsh = 0;
if (options->batch_mode == -1)
diff --git a/crypto/openssh/ssh_config b/crypto/openssh/ssh_config
index 059817d..9a09310 100644
--- a/crypto/openssh/ssh_config
+++ b/crypto/openssh/ssh_config
@@ -21,7 +21,7 @@
# RhostsRSAAuthentication yes
# RSAAuthentication yes
# PasswordAuthentication yes
-# FallBackToRsh yes
+# FallBackToRsh no
# UseRsh no
# BatchMode no
# CheckHostIP yes
OpenPOWER on IntegriCloud