Displaying 9 results from an estimated 9 matches for "bense".
Did you mean:
sense
2001 Oct 09
2
Solaris 2.6, and AFS
With the help of Jan Iven I have been able to compile openssh-2.9.9p2
on Solaris 2.6 with AFS/kerb4 support using gcc.
./configure --sysconfdir=/etc/ssh --with-tcp-wrappers \
--with-egd-pool=/var/run/egd-pool \
--with-kerberos4=/usr/athena --with-afs=/usr/afsws
to do this I modified the resulting Makefile,
from:
CPPFLAGS=-I. -I$(srcdir) -I/usr/local/ssl/include
2002 May 22
3
OpenSSH programming
Hello all,
is there any recent information on programming on how to add a new
authentication method into OpenSSH / OpenSSL ?!
Is there any other way, to add a new authentication method into openssh
(one-time passwords), apart from adding the functions into sshconnect.c
and sshconnect2.c
Particularly I'm interested in information on "struct Authctxt" in
sshconnect2 and sshuserauth2.
2002 Jan 04
2
3.0.2 AFS login problem, Solaris 2.5.1
I've been beating myself senseless trying to build OpenSsh 3.0.1 on Solaris
2.5.1 and get AFS login working.
The symptoms of the problem are: sshd builds (used --with-afs and
-with-kerberos4 - there is no PAM on this box), accepts connections from
non-AFS users, but does not accept a connection from an AFS user; the user
sees "permission denied" after entering the password.
The
2002 Jan 21
6
OpenSSH and OpenSSL snapshots
Hello,
In order to experiment with OpenCA, I have built an RPM for redhat 7.2
of a recent OpenSSL snapshot (the binary rpm on the OpenCA was built
with the different target directories and libraries. Unfortunately these
recent OpenSSL snapshots seems to break all OpenSSH tarballs and RPMs
that I have been able to find. None of them seem to compile
successfully, even the snapshots at
2001 Oct 03
0
Minor bug in ssh_connect1.c when AFS is defined.
...nssh or in
Kth's krb4-1.1. Anyway, if you define --with-afs=/usr/athena[1]
and --with-kerberos4=/usr/athena on
Solaris 2.7, you need to apply this minor patch to get
the client to build.
- You could argue that kafs.h should include these sys
files since it uses macros inside them.
- Booker C. Bense
[1]- Where kth installs by default.
diff -u -r1.1.1.1 sshconnect1.c
--- sshconnect1.c 2001/10/01 18:18:47 1.1.1.1
+++ sshconnect1.c 2001/10/02 22:53:09
@@ -25,6 +25,8 @@
#include <krb5.h>
#endif
#ifdef AFS
+#include <sys/ioccom.h>
+#include <sys/ioctl.h>
#in...
2003 May 15
2
KerberosIV support
Hi All,
The OpenBSD tree is likely to be dropping KerberosIV support very soon.
We will ultimately follow suit, but if there are many Krb4 users we may
give a transition period of a release or two.
AFAIK we don't compile at all against MIT KrbIV because of library
conflicts.
So, who is using OpenSSH Krb4 support at the moment?
-d
2006 Nov 01
0
No subject
"Doing the right thing is too hard, so we'll
implement the easy, but incorrect solution."
- Would you accept that line of reasoning in any other
section of SSH?
- Booker C. Bense
2001 Dec 14
2
PATCH: Kerberos password authentication w/o KDC verification
Folks: We use an old AFS cell with Kerberos 4. Our use of Kerberos 4 is
fairly limited; we have never needed to implement rcmd host principals
for most of our systems. Indeed, given that Kerberos 4 strips off the
domain name portion of a hostname when determining the rcmd instance, we
would not be able to do this, since we do have duplicate hostnames in
multiple subdomains.
For AFS
2002 Jan 22
7
AIX reading /etc/environment out of step.
I was discussing with Don about a private topic..and while skimming the
code I noticed that during a 'ssh mouring at site ls' the /etc/environment
is *ONLY* read if the remote machine is an AIX box. This is undocumented
and I'm wondering if someone using AIX could explain WHY it exists in the
session.c:do_child()? No other OS has this. I don't see why AIX should
require it.