diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-01-04 00:08:02 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-01-04 00:08:02 +0000 |
commit | 40ac6ccc6249d504cde2c88df9f90dfcc81f003f (patch) | |
tree | db92e8c451792c5f33712368b4df3c7dff8e1c3b /usr.bin/ssh/sshd_config | |
parent | 573f387ec119d78734faf0f7bcb79a160ba603b7 (diff) |
ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new features:
sshd allows multiple ListenAddress and Port options. note that libwrap is
not IPv6-ready. (based on patches from fujiwara@rcac.tdi.co.jp)
Diffstat (limited to 'usr.bin/ssh/sshd_config')
-rw-r--r-- | usr.bin/ssh/sshd_config | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshd_config b/usr.bin/ssh/sshd_config index 6799088c713..0d403842077 100644 --- a/usr.bin/ssh/sshd_config +++ b/usr.bin/ssh/sshd_config @@ -1,7 +1,8 @@ # This is ssh server systemwide configuration file. Port 22 -ListenAddress 0.0.0.0 +#ListenAddress 0.0.0.0 +#ListenAddress :: HostKey /etc/ssh_host_key ServerKeyBits 768 LoginGraceTime 600 |