~ubuntu-branches/ubuntu/precise/krb5/precise-updates

« back to all changes in this revision

Viewing changes to doc/rst_source/krb_admins/admin_commands/ktutil.rst

  • Committer: Package Import Robot
  • Author(s): Sam Hartman
  • Date: 2011-12-01 19:34:41 UTC
  • mfrom: (28.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20111201193441-9tipg3aru1jsidyv
Tags: 1.10+dfsg~alpha1-6
* Fix segfault with unknown hostnames in krb5_sname_to_principal,
  Closes: #650671
* Indicate that this library breaks libsmbclient versions that depend on
  krb5_locate_kdc, Closes: #650603, #650611

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. _ktutil(1):
 
2
 
 
3
ktutil
 
4
=============
 
5
 
 
6
 
 
7
SYNOPSIS
 
8
-------------
 
9
 
 
10
**ktutil**
 
11
 
 
12
DESCRIPTION
 
13
-------------
 
14
 
 
15
The *ktutil* command invokes a subshell from which an administrator can read, write, or edit entries in a Kerberos V5 keytab or V4 srvtab file.
 
16
 
 
17
COMMANDS
 
18
-------------
 
19
 
 
20
       **list**   
 
21
              Displays the current keylist.
 
22
 
 
23
              Alias: **l**
 
24
 
 
25
       **read_kt** *keytab*
 
26
              Read the Kerberos V5 keytab file *keytab* into the current keylist.
 
27
 
 
28
              Alias: **rkt**
 
29
 
 
30
       **read_st** *srvtab*
 
31
              Read the Kerberos V4 srvtab file *srvtab* into the current keylist.
 
32
 
 
33
              Alias: **rst**
 
34
 
 
35
       **write_kt** *keytab*
 
36
              Write the current keylist into the Kerberos V5 keytab file *keytab*.
 
37
 
 
38
              Alias: **wkt**
 
39
 
 
40
       **write_st** *srvtab*
 
41
              Write the current keylist into the Kerberos V4 srvtab file *srvtab*.
 
42
 
 
43
              Alias: **wst**
 
44
 
 
45
       **clear_list**
 
46
              Clear the current keylist.
 
47
 
 
48
              Alias: **clear**
 
49
 
 
50
       **delete_entry** *slot*
 
51
              Delete the entry in slot number *slot* from the current keylist.
 
52
 
 
53
              Alias: *delent*
 
54
 
 
55
       **add_entry** (**-key | -password)** **-p** *principal* **-k** *kvno* **-e** *enctype*
 
56
              Add *principal* to keylist using key or password.
 
57
 
 
58
              Alias: **addent**
 
59
 
 
60
       **list_requests**
 
61
              Displays a listing of available commands.
 
62
 
 
63
              Aliases: **lr**, **?**
 
64
 
 
65
       **quit**
 
66
              Quits ktutil.
 
67
 
 
68
              Aliases: **exit**, **q**
 
69
 
 
70
 
 
71
EXAMPLE::
 
72
 
 
73
      ktutil:  add_entry -password -p alice@BLEEP.COM -k 1 -e aes128-cts-hmac-sha1-96
 
74
      Password for alice@BLEEP.COM:
 
75
      ktutil:  add_entry -password -p alice@BLEEP.COM -k 1 -e aes256-cts-hmac-sha1-96
 
76
      Password for alice@BLEEP.COM:
 
77
      ktutil:  write_kt keytab
 
78
      ktutil:
 
79
 
 
80
SEE ALSO
 
81
-------------
 
82
 
 
83
       kadmin(8), kdb5_util(8)
 
84