diff options
author | Damien Miller <djm@mindrot.org> | 2002-02-10 08:32:28 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-02-10 08:32:28 +0100 |
commit | 05eda437a64020e8d8a824bb1ae102603f59efb9 (patch) | |
tree | 3a8a625d639922657232c8bbf772554842c1d97d /sshd_config | |
parent | - markus@cvs.openbsd.org 2002/02/07 09:35:39 (diff) | |
download | openssh-05eda437a64020e8d8a824bb1ae102603f59efb9.tar.xz openssh-05eda437a64020e8d8a824bb1ae102603f59efb9.zip |
- (djm) OpenBSD CVS Sync
- deraadt@cvs.openbsd.org 2002/02/09 17:37:34
[pathnames.h session.c ssh.1 sshd.8 sshd_config ssh-keyscan.1]
move ssh config files to /etc/ssh
- (djm) Adjust portable Makefile.in tnd ssh-rand-helper.c o match
Diffstat (limited to '')
-rw-r--r-- | sshd_config | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sshd_config b/sshd_config index ee2e6ac89..e05e24cc6 100644 --- a/sshd_config +++ b/sshd_config @@ -1,4 +1,4 @@ -# $OpenBSD: sshd_config,v 1.46 2002/01/29 14:32:03 markus Exp $ +# $OpenBSD: sshd_config,v 1.47 2002/02/09 17:37:34 deraadt Exp $ # This is the sshd server system-wide configuration file. See sshd(8) # for more information. @@ -16,10 +16,10 @@ #ListenAddress :: # HostKey for protocol version 1 -#HostKey /etc/ssh_host_key +#HostKey /etc/ssh/ssh_host_key # HostKeys for protocol version 2 -#HostKey /etc/ssh_host_rsa_key -#HostKey /etc/ssh_host_dsa_key +#HostKey /etc/ssh/ssh_host_rsa_key +#HostKey /etc/ssh/ssh_host_dsa_key # Lifetime and size of ephemeral version 1 server key #KeyRegenerationInterval 3600 @@ -44,7 +44,7 @@ #RhostsAuthentication no # Don't read the user's ~/.rhosts and ~/.shosts files #IgnoreRhosts yes -# For this to work you will also need host keys in /etc/ssh_known_hosts +# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts #RhostsRSAAuthentication no # similar for protocol version 2 #HostbasedAuthentication no |