>ERROR: client1.comp.bogus [mutual-authentication failed]
>...
>The amandad.debug file on the client shows the following:
>
>start client1 debug--------------------
>
>got packet:
>--------
>Amanda 2.4 REQ HANDLE 003-004C0508 SEQ 1012444448
>SECURITY TICKET "$04$07$05COMP.BOGUS$008
>...
>ERROR [host server.comp.bogus: port 1416 not secure]

Here's a snippit of the code:

#ifdef KRB4_SECURITY
    if(krb4_auth)
        return krb4_security_ok(addr, str, cksum, errstr);
    else
#endif
        return bsd_security_ok(addr, str, cksum, errstr);

That error message, "port 1416 not secure", comes from bsd_security_ok(),
**not** from krb4_security_ok().  That, in turn, implies krb4_auth is
not turned on.

Earlier in your amandad*debug file should be one of these two lines:

  using krb4 security

or

  using bsd security

The output for client2 that you posted says the former (krb4).  My guess
is the output for client1 says the latter (bsd).  It looks like you need
"-krb4" on your amandad line in inetd.conf to get krb4 security turned on
(check client2 and see how it is started).

>--Ruth Anne

John R. Jackson, Technical Software Specialist, [EMAIL PROTECTED]

Reply via email to