search for: ksulliva

Displaying 4 results from an estimated 4 matches for "ksulliva".

2000 Dec 14
1
OpenSSH, Kth kerberos, and Digital Unix
I've compiled OpenSSH 2.3.0p1 with Kerberos 4 from Kth (1.0.4). We use AFS heavily and need the AFS token passing features. This combo is working great on Irix and NetBSD/{alpha,i386}, but it's dying on Digital Unix (4.0f and 5.0). "ssh -v hostname" dumps core in des_pcbc_encrypt() after "Trying Kerberos authentication". My suspicion is that the des routines from
2003 Mar 12
1
[Bug 508] Krb4/AFS token passing doesn't work because of mkstemp
...e of mkstemp Product: Portable OpenSSH Version: -current Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: sshd AssignedTo: openssh-unix-dev at mindrot.org ReportedBy: ksulliva at psc.edu In auth-krb4.c, in krb4_init(), we have: if ((fd = mkstemp(authctxt->krb4_ticket_file)) != -1) { which tries to create a temporary file to hold kerberos tickets. This file is created some lines above by: snprintf(authctxt->krb4_ticket_file, MAXPATHLEN, "%s%...
2003 Mar 12
0
[Bug 44] Can't pass KRB4 TGT on RH7.2 due to glibc mkstemp
http://bugzilla.mindrot.org/show_bug.cgi?id=44 djm at mindrot.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ksulliva at psc.edu ------- Additional Comments From djm at mindrot.org 2003-03-13 09:43 ------- *** Bug 508 has been marked as a duplicate of this bug. *** ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2001 Jan 11
1
Kerberos password authentication and SSH2
My site uses Kerb 4 (actually AFS) for virtually all authentication. No users have local passwords on machines. We'd like to start allowing SSH2 connections, but OpenSSH 2.3.0p1 will not authenticate Kerberos passwords for SSH2 connections. In auth2.c: #ifdef KRB4 /* turn off kerberos, not supported by SSH2 */ options.kerberos_authentication = 0; #endif If I remove this