[3390] in Kerberos
Re: encrypted telnet session?
daemon@ATHENA.MIT.EDU (Mike Friedman (510) 642-1410)
Wed Jun 8 18:59:48 1994
To: kerberos@MIT.EDU
Date: Wed, 08 Jun 94 15:17:14 PDT
From: spgmnf@cmsa.Berkeley.EDU (Mike Friedman (510) 642-1410)
In article <BRLEWIS.94Jun8152053@joy.mit.edu>
brlewis@joy.mit.edu (Bruce R. Lewis) writes:
>
>It sounds like you have a version of login that doesn't take command-line
>options, but you haven't compiled with -DNO_LOGIN_F -DNO_LOGIN_P
>-DNO_LOGIN_H.
>
>To login without a password, you'll need some equivalent of
> login -f user
>which forces a login without a password.
>
>The relevant source code is in telnetd/sys_term.c
Thanks!!
As it turns out, I needed to compile telnetd with -DNO_LOGIN_F and with
-DLOGIN_R, which I determined by looking at what sys_term.c is trying to
do. I also discovered, only from looking at the code and comments there,
that the target user's .rhosts file must have a 'localhost' entry (because
telnetd simulates a locally-initiated rlogind when the -f option of login
isn't available).
(My login does know about -p, so that's no problem).
Thanks again, Bruce, for pointing me in the right direction.