Subversion Repositories ALCASAR

Rev

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