Bug 17845
| Summary: | openssh sshd config file error | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Seth Vidal <skvidal> |
| Component: | openssh | Assignee: | Tomas Mraz <tmraz> |
| Status: | CLOSED NOTABUG | QA Contact: | |
| Severity: | high | Docs Contact: | |
| Priority: | medium | ||
| Version: | 7.0 | CC: | pekkas |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2005-02-02 15:59:01 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Seth Vidal
2000-09-26 03:29:48 UTC
This is a feature or "feature" of OpenSSH.
If certain options (I tried AFSTokenPassing and KerberosTgtPassing myself, a month or two ago),
aren't enabled at compile time, sshd will barf if they're used -- those won't be recognized at all.
This isn't how it's usually done I think.
-- e.g. from servconf.c ---
[ ... ]
#ifdef KRB4
oKerberosAuthentication,
#endif /* KRB4 */
#ifdef AFS
oKerberosTgtPassing, oAFSTokenPassing,
#endif
[ ... ]
---
OpenSSH doesn't yet support Kerberos 5 for authentication, and we're trying to stay away from using Kerberos IV auth for anything in the distribution. Local testing shows that sshd with PAM and pam_krb5 does operate correctly, so I'm not sure what to make of Seth's results otherwise. This doesn't seem to me as a real bug (see comment #1, and comment #2). Maybe we could patch out the commented options from the config file but it doesn't seem to me to be worth the patch. |