home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / protocol / kerberos / 697 < prev    next >
Encoding:
Text File  |  1992-09-15  |  2.6 KB  |  84 lines

  1. Newsgroups: comp.protocols.kerberos
  2. Path: sparky!uunet!stanford.edu!news
  3. From: bagate!socrates!bbh7rq5 (Davies)
  4. Subject: Kinit & kpasswd in kerberosV5 (Sandia dist.)
  5. Message-ID: <9209151738.AA01050@einstein.wash.bell-atl.com>
  6. Sender: news@shelby.stanford.edu (USENET News System)
  7. Organization: Internet-USENET Gateway at Stanford University
  8. Date: Tue, 15 Sep 1992 17:43:47 GMT
  9. Lines: 73
  10.  
  11. Hello,
  12.  
  13. I am working on configuring Kerberos V5 (Sandia distribution) and am having
  14. some troubles with kinit and kpasswd.  The kdc is up and running and
  15. the database has been initialized and a few users added.
  16.  
  17. When I run kinit, I get the following:
  18. =======================================================================
  19. kerberos:cdavies$ kinit cdavies
  20. Enter password:
  21.  
  22. Enter Your SecurId Access Code Prepended with Your PIN
  23.  (or a '#'if Your PIN is entered on the card keypad)
  24.  or Type return <CR> if You Do NOT Use a SecurId Card:
  25. kinit: Password has expired. Use kpassword to renew.
  26. =======================================================================
  27.  
  28. I find it strange that it tells me to run "kpassword" instead of "kpasswd".
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36. Then, when I run kpasswd I get:
  37. =======================================================================
  38. kerberos:cdavies$ kpasswd
  39. Old password for cdavies@SOCRATES.BELL-ATL.COM:
  40.  
  41. Unable to Get Initial Credentials : Program lacks support for key type -17653282
  42. 35
  43.  
  44.  
  45. Protocol Failure - Password NOT Changed.
  46. =======================================================================
  47.  
  48.  
  49.  
  50.  
  51. Also, when I first compiled kpasswd and ran it, I got a message:
  52.     unknown symbol: _des_string_to_key
  53.  
  54. So, after looking through the header files, I noticed that des_string_to_key
  55. and mit_des_string_to_key #defined to be the same.  So, I changed kpasswd.c
  56. from:
  57.     if (retval = des_string_to_key(arg->password.data,
  58.                                    v4_keyptr)) {
  59. to:
  60.     if (retval = mit_des_string_to_key(arg->password.data,
  61.                                    v4_keyptr)) {
  62.  
  63. This seemed to make kpasswd work better.  (At least no unknown symbol)
  64.  
  65.  
  66. Any help on these errors?
  67.  
  68. Thanks in advance...
  69. Chris
  70.  
  71.  
  72. -- 
  73.  
  74. *******************************************************************************
  75.  
  76. Chris Davies                            e-mail: cdavies@socrates.bell-atl.com
  77. Bell Atlantic                            Voice: (301) 989-4111
  78.                                            Fax: (301) 595-1341
  79.  
  80.  
  81. Note: If your e-mail reply to me bounces, try sending it explicitly to 
  82. cdavies@socrates.bell-atl.com instead of using the 'reply' feature.
  83. ******************************************************************************
  84.