diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-07-27 22:04:26 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-07-27 22:41:42 +1000 |
commit | a40ce5d0d9d06f592a8885162bbaf644006b9f0f (patch) | |
tree | 27a367040a91d1cd6605db042acda7e45c1ca2cb /source4/kdc/config.mk | |
parent | 56f4516399431cc508ca0c3e0dd7f179cc7ab62c (diff) | |
download | samba-a40ce5d0d9d06f592a8885162bbaf644006b9f0f.tar.gz samba-a40ce5d0d9d06f592a8885162bbaf644006b9f0f.tar.xz samba-a40ce5d0d9d06f592a8885162bbaf644006b9f0f.zip |
s4:kerberos Add 'net export keytab' command for wireshark decryption
It is much easier to do decryption with wireshark when the keytab is
available for every host in the domain. Running 'net export keytab
<keytab name>' will export the current (as pointed to by the supplied
smb.conf) local Samba4 doamin.
(This uses Heimdal's 'hdb' keytab and then the existing hdb-samba4,
and so has a good chance of keeping working in the long term).
Andrew Bartlett
Diffstat (limited to 'source4/kdc/config.mk')
-rw-r--r-- | source4/kdc/config.mk | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/source4/kdc/config.mk b/source4/kdc/config.mk index 03fa2db295..56199d6364 100644 --- a/source4/kdc/config.mk +++ b/source4/kdc/config.mk @@ -6,7 +6,7 @@ INIT_FUNCTION = server_service_kdc_init SUBSYSTEM = service PRIVATE_DEPENDENCIES = \ - HEIMDAL_KDC HDB_SAMBA4 LIBSAMBA-HOSTCONFIG + HEIMDAL_KDC HDB_SAMBA4 PAC_GLUE LIBSAMBA-HOSTCONFIG # End SUBSYSTEM KDC ####################### @@ -22,5 +22,17 @@ PRIVATE_DEPENDENCIES = \ # End SUBSYSTEM KDC ####################### -HDB_SAMBA4_OBJ_FILES = $(addprefix $(kdcsrcdir)/, hdb-samba4.o pac-glue.o) +HDB_SAMBA4_OBJ_FILES = $(addprefix $(kdcsrcdir)/, hdb-samba4.o) + +####################### +# Start SUBSYSTEM KDC +[SUBSYSTEM::PAC_GLUE] +CFLAGS = -Iheimdal/kdc -Iheimdal/lib/hdb +PRIVATE_DEPENDENCIES = \ + LIBLDB auth_sam auth_sam_reply CREDENTIALS \ + HEIMDAL_HDB LIBSAMBA-HOSTCONFIG +# End SUBSYSTEM KDC +####################### + +PAC_GLUE_OBJ_FILES = $(addprefix $(kdcsrcdir)/, pac-glue.o) $(eval $(call proto_header_template,$(kdcsrcdir)/pac_glue.h,$(HDB_SAMBA4_OBJ_FILES:.o=.c))) |