diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-26 22:32:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-26 22:32:04 +0000 |
commit | efbc437ff1cf825b1a0549e96f494ed15d7211df (patch) | |
tree | 90ea83e770ac53741f239af9ed827e721efa29e9 | |
parent | 86a2804f41a82655f07cc61ce1d4a2f16b157b03 (diff) |
/etc has always been in the same place
-rw-r--r-- | usr.bin/ssh/sshd_config | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/sshd_config b/usr.bin/ssh/sshd_config index 54deaa6251a..10837e84705 100644 --- a/usr.bin/ssh/sshd_config +++ b/usr.bin/ssh/sshd_config @@ -2,8 +2,8 @@ Port 22 ListenAddress 0.0.0.0 -HostKey _ETCDIR_/ssh_host_key -RandomSeed _ETCDIR_/ssh_random_seed +HostKey /etc/ssh_host_key +RandomSeed /etc/ssh_random_seed ServerKeyBits 768 LoginGraceTime 600 KeyRegenerationInterval 3600 @@ -20,7 +20,7 @@ KeepAlive yes SyslogFacility DAEMON RhostsAuthentication no # -# For this to work you will also need host keys in _ETCDIR_/ssh_known_hosts +# For this to work you will also need host keys in /etc/ssh_known_hosts RhostsRSAAuthentication yes # # Changed RSAAuthentication to no/bg |