Subversion Repositories ALCASAR

Rev

Rev 2262 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
2088 raphael.pi 1
#!/bin/sh
2234 richard 2
#
3
# $Id: alcasar-macdown.sh 2274 2017-06-06 06:12:50Z richard $
4
#
5
# Le script 'macdown' est appelé par coovachilli pendant le DHCP down (release)
6
# Pour une adresse mac authorisée pour laquelle coovachilli effectue un DHCP release, l'@IP sera retiré de l'ipset 'not_filtered'
2088 raphael.pi 7
 
2234 richard 8
if [ -z $CALLING_STATION_ID ]; then
9
	exit 1
10
fi
2088 raphael.pi 11
 
12
chilli_current_mac=$(chilli_query list | grep $CALLING_STATION_ID)
13
is_connected=$(echo $chilli_current_mac | cut -d' ' -f5)
14
current_mac=$(echo $chilli_current_mac | cut -d' ' -f1)
15
current_name=$(echo $chilli_current_mac | cut -d' ' -f6)
16
current_ip=$(echo $chilli_current_mac | cut -d' ' -f2)
17
 
2234 richard 18
 
2274 richard 19
if [ $is_connected == "1" ] && [ $current_mac == $current_name ]; then   # only for authenticated MAC
2094 raphael.pi 20
	#Lecture du Filter-Id de l'équipement authentifié afin de le retirer de son ipset
21
	PASSWD_FILE="/root/ALCASAR-passwords.txt"
2234 richard 22
	QUERY="SELECT value FROM radreply WHERE attribute='Filter-Id' AND username='$current_mac';"
23
	FILTER_ID=$(mysql -D radius -u root -p$(cat $PASSWD_FILE | grep "root /" | rev | cut -d' ' -f1 | rev) -e "$QUERY" -Ns)
2094 raphael.pi 24
 
2234 richard 25
	# FilterID Byte N°0 to 7
26
	#  0: profile_1 (WEB)
27
	#  1: profile_2 (WEB + Mail + Remote access)
28
	#  2: profile_3 (Custom)
29
	#  3: warn_user (if imputability report has been generated)
30
	#  5: WL
31
	#  6: BL
32
	#  7: HAVP
2094 raphael.pi 33
 
2249 tom.houday 34
	if [ ${FILTER_ID:5:1} == '1' ]; then	# HAVP_WL
35
		set_filter="havp_wl"
2234 richard 36
	elif [ ${FILTER_ID:6:1} == '1' ]; then	# HAVP_BL
37
		set_filter="havp_bl"
2249 tom.houday 38
	elif [ ${FILTER_ID:7:1} == '1' ]; then	# HAVP
39
		set_filter="havp"
2234 richard 40
	else					# NOT_FILTERED
41
		set_filter="not_filtered"
2094 raphael.pi 42
	fi
43
 
2249 tom.houday 44
	if [ ${FILTER_ID:2:1} == '1' ]; then	# PROFILE 3 (Custom)
45
		set_proto="proto_3";
2234 richard 46
	elif [ ${FILTER_ID:1:1} == '1' ]; then	# PROFILE 2 (WEB + Mail + Remote access)
47
		set_proto="proto_2";
2249 tom.houday 48
	elif [ ${FILTER_ID:0:1} == '1' ]; then	# PROFILE 1 (WEB)
49
		set_proto="proto_1";
2234 richard 50
	else					# PROFILE 0 (Not filtered)
51
		set_proto="proto_0";
2094 raphael.pi 52
	fi
53
 
2234 richard 54
	ipset del $set_filter $current_ip
2094 raphael.pi 55
	ipset del $set_proto $current_ip
2088 raphael.pi 56
fi