diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-10-01 22:23:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-10-01 22:23:49 +0000 |
commit | 5a24f873c833ac9787f8229fd90c11c72ce38419 (patch) | |
tree | c19efb7f223732c6a29130a1a50d5884fe08367b /usr.bin/ssh | |
parent | 0825a913aca6caf55d2fba608e5714dfa19c1b73 (diff) |
randomseed is really gone now
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/servconf.c | 4 | ||||
-rw-r--r-- | usr.bin/ssh/sshd.8 | 9 | ||||
-rw-r--r-- | usr.bin/ssh/sshd_config | 1 |
3 files changed, 4 insertions, 10 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index 4605c423bf8..9590653331c 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -12,7 +12,7 @@ Created: Mon Aug 21 15:48:58 1995 ylo */ #include "includes.h" -RCSID("$Id: servconf.c,v 1.7 1999/10/01 02:38:09 provos Exp $"); +RCSID("$Id: servconf.c,v 1.8 1999/10/01 22:23:48 deraadt Exp $"); #include "ssh.h" #include "servconf.h" @@ -311,7 +311,7 @@ void read_server_config(ServerOptions *options, const char *filename) break; case sRandomSeedFile: - fprintf(stderr, "%s line %d: option is obsolete.\n", + fprintf(stderr, "%s line %d: \"randomseed\" option is obsolete.\n", filename, linenum); cp = strtok(NULL, WHITESPACE); break; diff --git a/usr.bin/ssh/sshd.8 b/usr.bin/ssh/sshd.8 index 5740feaeda1..81d004bb6f0 100644 --- a/usr.bin/ssh/sshd.8 +++ b/usr.bin/ssh/sshd.8 @@ -9,7 +9,7 @@ .\" .\" Created: Sat Apr 22 21:55:14 1995 ylo .\" -.\" $Id: sshd.8,v 1.3 1999/09/29 18:16:21 dugsong Exp $ +.\" $Id: sshd.8,v 1.4 1999/10/01 22:23:48 deraadt Exp $ .\" .Dd September 25, 1999 .Dt SSHD 8 @@ -302,9 +302,7 @@ nothing is logged in the system log, except fatal errors. The default is .Dq no . .It Cm RandomSeed -Specifies the file containing the random seed for the server; this -file is created automatically and updated regularly. The default is -.Pa /etc/ssh_random_seed . +Obsolete. Random number generation uses other techniques. .It Cm RhostsAuthentication Specifies whether authentication using rhosts or /etc/hosts.equiv files is sufficient. Normally, this method should not be permitted @@ -536,9 +534,6 @@ manually. This file should be world-readable but writable only by root. Its contents should match the private part. This file is not really used for anything; it is only provided for the convenience of the user so its contents can be copied to known hosts files. -.It Pa /etc/ssh_random_seed -This file contains a seed for the random number generator. This file -should only be accessible by root. .It Pa /var/run/sshd.pid Contains the process ID of the .Nm diff --git a/usr.bin/ssh/sshd_config b/usr.bin/ssh/sshd_config index 8e098e370ea..3bf03b6bf75 100644 --- a/usr.bin/ssh/sshd_config +++ b/usr.bin/ssh/sshd_config @@ -3,7 +3,6 @@ Port 22 ListenAddress 0.0.0.0 HostKey /etc/ssh_host_key -RandomSeed /etc/ssh_random_seed ServerKeyBits 768 LoginGraceTime 600 KeyRegenerationInterval 3600 |