search for: krb4_cleanup_proc

Displaying 6 results from an estimated 6 matches for "krb4_cleanup_proc".

2002 Jun 20
0
[Bug 281] New: unable to authorize with local shadow password
...hentication for komanek. debug1: temporarily_use_uid: 112/20 (e=0) debug1: trying public RSA key file /home/komanek/.ssh/authorized_keys debug1: restore_uid Failed rsa for komanek from 195.113.56.1 port 1022 debug1: Kerberos v4 password authentication for komanek failed: Password incorre ct debug1: krb4_cleanup_proc called Failed password for komanek from 195.113.56.1 port 1022 debug1: Kerberos v4 password authentication for komanek failed: Password incorre ct debug1: krb4_cleanup_proc called Failed password for komanek from 195.113.56.1 port 1022 debug1: Kerberos v4 password authentication for komanek failed:...
2002 Jan 04
2
3.0.2 AFS login problem, Solaris 2.5.1
...entering the password. The server (in debug mode) at this point says: debug1: attempt 2 failures 2 kerberos-iv/udp unknown service, using default port 750 Kerberos v4 TGT for joeuser unverifiable: Principal unknown (kerberos); rcmd.grimble not registered, or srvtab is wrong? debug1: krb4_cleanup_proc called Failed password for joeuser from 123.45.67.89 port 34375 ssh2 Snooping the network reveals that client machine 'grimble' sends a packet that includes the kerberos realm and "rcmd.grimble' to 'kerberos', our auth server. Server sends response that includes usern...
2002 May 02
0
IRIX 6.5 + AFS/Kerberos Problems
...e: #include "auth.h" ) auth.h ------ make include of krb.h conditional (starts at line 100): #ifdef KRB4 new--> #ifndef ONLY_PASSWD_AUTH #include <krb.h> int auth_krb4(Authctxt *, KTEXT, char **); int auth_krb4_password(Authctxt *, const char *); void krb4_cleanup_proc(void *); new--> #endif /* ! ONLY_PASSWD_AUTH */ After making this change, ssh will build and run but sshd does not allow logging in using AFS accounts despite the defaults saying it should. There was another post in the archives that said the problem might be taken care of by removing t...
2002 May 03
0
AFS/Kerberos authentication problems on IRIX 6.5.15
...192.xx.xx.xx port 49297 ssh2 debug1: userauth-request for user user1 service ssh-connection method password debug1: attempt 2 failures 2 kerberos-iv/udp unknown service, using default port 750 debug1: Kerberos v4 password authentication for user1 failed: Principal unknown (kerberos) debug1: krb4_cleanup_proc called Failed password for user1 from 192.xx.xx.xx port 49297 ssh2 ======sshd_config========= # $OpenBSD: sshd_config,v 1.48 2002/02/19 02:50:59 deraadt Exp $ # This is the sshd server system-wide configuration file. See sshd(8) # for more information. # This sshd was compiled with...
2002 Jan 23
1
Fix AFS and Kerberos interaction
...xt, const char *string) { @@ -370,4 +369,4 @@ return (1); } -#endif /* AFS */ +#endif /* KRB4 */ --- auth.h 2002/01/23 12:01:53 1.1 +++ auth.h 2002/01/23 12:14:19 @@ -102,14 +102,15 @@ int auth_krb4(Authctxt *, KTEXT, char **); int auth_krb4_password(Authctxt *, const char *); void krb4_cleanup_proc(void *); +#endif /* KRB4 */ #ifdef AFS #include <kafs.h> +#ifdef KRB4 int auth_krb4_tgt(Authctxt *, const char *); int auth_afs_token(Authctxt *, const char *); -#endif /* AFS */ - #endif /* KRB4 */ +#endif /* AFS */ #ifdef KRB5 int auth_krb5(Authctxt *authctxt, krb5_data *...
2001 Oct 24
2
disable features
..._all_opens(); +#endif if (compat20) do_authenticated2(authctxt); else do_authenticated1(authctxt); +#ifdef WITH_AGENTFWD /* remove agent socket */ if (auth_get_socket_name()) auth_sock_cleanup_proc(authctxt->pw); +#endif #ifdef KRB4 if (options.kerberos_ticket_cleanup) krb4_cleanup_proc(authctxt); @@ -181,9 +185,15 @@ { Session *s; char *command; - int success, type, plen, screen_flag; + int success, type, plen; + u_int dlen; +#ifdef WITH_COMPRESSION int compression_level = 0, enable_compression_after_reply = 0; - u_int proto_len, data_len, dlen; +#endif +#ifdef WITH_X11FWD...