diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | UPGRADING | 18 |
2 files changed, 19 insertions, 0 deletions
@@ -14,6 +14,7 @@ | |||
14 | - Big manpage and config file cleanup from Andre Lucas | 14 | - Big manpage and config file cleanup from Andre Lucas |
15 | <andre.lucas@dial.pipex.com> | 15 | <andre.lucas@dial.pipex.com> |
16 | - Re-added latest (unmodified) OpenBSD manpages | 16 | - Re-added latest (unmodified) OpenBSD manpages |
17 | - Doc updates | ||
17 | 18 | ||
18 | 20000119 | 19 | 20000119 |
19 | - SCO compile fixes from Gary E. Miller <gem@rellim.com> | 20 | - SCO compile fixes from Gary E. Miller <gem@rellim.com> |
@@ -78,3 +78,21 @@ users access to the account regardless of the policy specified by | |||
78 | not add the "nullok" directive to your PAM configuration file unless | 78 | not add the "nullok" directive to your PAM configuration file unless |
79 | you specifically wish to allow empty passwords. | 79 | you specifically wish to allow empty passwords. |
80 | 80 | ||
81 | 7. Rhosts authentication does not work | ||
82 | |||
83 | Make sure that ssh is installed with the setuid bit set. Note that the | ||
84 | Makefile does not do this by default. | ||
85 | |||
86 | 8. X11 and/or agent forwarding does not work | ||
87 | |||
88 | Check your ssh_config and sshd_config. The default configuration files | ||
89 | disable authentication agent and X11 forwarding. | ||
90 | |||
91 | 9. ssh takes a long time to connect with Linux/glibc 2.1 | ||
92 | |||
93 | The glibc shipped with Redhat 6.1 appears to take a long time to resolve | ||
94 | "IPv6 or IPv4" addresses from domain names. This can be kludged around | ||
95 | with the --with-ipv4-default configure option. This instructs OpenSSH to | ||
96 | use IPv4-only address resolution. (IPv6 lookups may still be made by | ||
97 | specifying the -6 option). | ||
98 | |||