add kerberos config

This commit is contained in:
LingZhaoHui 2022-07-16 16:28:26 +08:00
parent 45ba21dbc0
commit a8b9effd45
8 changed files with 55 additions and 8 deletions

4
.gitignore vendored
View File

@ -176,5 +176,5 @@ cython_debug/
a.out
*.out
*.o
server
client
sample/sample_server
sample/sample_client

BIN
client/cli.keytab Normal file

Binary file not shown.

4
client/env Executable file
View File

@ -0,0 +1,4 @@
PWD=$(pwd)
KRB5_CONFIG=${PWD}/client/krb5.conf
KRB5CCNAME=FILE:/tmp/krb5cc_cli_%{uid}
KRB5_CCNAME=FILE:/tmp/krb5cc_cli_%{uid}

20
client/krb5.conf Executable file
View File

@ -0,0 +1,20 @@
[logging]
default = FILE:/var/log/krb5libs.log
kdc = FILE:/var/log/krb5kdc.log
admin_server = FILE:/var/log/kadmind.log
[libdefaults]
default_realm = TEST.COM
default_ccache_name = FILE:/tmp/krb5cc_cli_%{uid}
dns_lookup_realm = false
dns_lookup_kdc = false
ticket_lifetime = 24h
renew_lifetime = 7d
forwardable = true
[realms]
TEST.COM = {
kdc = krb5-kdc-server:88
admin_server = krb5-kdc-server
}

View File

@ -1,7 +1,7 @@
CC=gcc
PROGRAM=client server
PROGRAM=sample_client sample_server
LIBSSL_LIBS=-lsasl2
@ -14,17 +14,17 @@ all: $(PROGRAM)
@echo "build seccess!"
@echo ""
client:sample-client.c
sample_client:sample-client.c
$(CC) -g -c sample-client.c $(FINAL_FLAG)
$(CC) -g -o client sample-client.o $(FINAL_FLAG)
$(CC) -g -o sample_client sample-client.o $(FINAL_FLAG)
rm *.o
server:sample-server.c
sample_server:sample-server.c
$(CC) -g -c sample-server.c $(FINAL_FLAG)
$(CC) -g -o server sample-server.o $(FINAL_FLAG)
$(CC) -g -o sample_server sample-server.o $(FINAL_FLAG)
rm *.o
clean:
rm server client
rm sample_server sample_client

3
server/env Executable file
View File

@ -0,0 +1,3 @@
PWD=$(pwd)
export KRB5_CONFIG=${PWD}/server/krb5.conf
export KRB5CCNAME=/tmp/krb5cc_hadoop_1000

BIN
server/hadoop.keytab Normal file

Binary file not shown.

20
server/krb5.conf Executable file
View File

@ -0,0 +1,20 @@
[logging]
default = FILE:/var/log/krb5libs.log
kdc = FILE:/var/log/krb5kdc.log
admin_server = FILE:/var/log/kadmind.log
[libdefaults]
default_realm = TEST.COM
default_ccache_name = FILE:/tmp/krb5cc_hadoop_%{uid}
dns_lookup_realm = false
dns_lookup_kdc = false
ticket_lifetime = 24h
renew_lifetime = 7d
forwardable = true
[realms]
TEST.COM = {
kdc = krb5-kdc-server:88
admin_server = krb5-kdc-server
}