Subversion Repositories ALCASAR

Rev

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

Rev Author Line No. Line
2467 richard 1
server default {
2
listen {
3
	type = auth
4
	ipaddr = *
5
	port = 0
6
	limit {
7
		max_connections = 16
8
		lifetime = 0
9
		idle_timeout = 30
10
	}
11
}
12
 
13
listen {
14
	type = acct
15
	ipaddr = *
16
	port = 0
17
	limit {
18
		max_pps = 0
19
	}
20
}
21
 
22
authorize {
2591 rexy 23
	sql{
24
		notfound = 1
25
		reject = 2
26
	}
27
	if(notfound){
28
		update reply {
29
			Reply-Message := "Username not found"
30
		}
31
	}
2513 tom.houday 32
	expire_on_login
2467 richard 33
	noresetcounter
34
	dailycounter
35
	monthlycounter
36
	expiration
2513 tom.houday 37
	counterCoovaChilliMaxTotalOctetsDaily
38
	counterCoovaChilliMaxTotalOctetsMonthly
2467 richard 39
	logintime
40
	pap
41
}
42
 
43
authenticate {
44
	Auth-Type PAP {
45
		pap
46
	}
47
}
48
 
49
accounting {
50
	sql
51
}
52
 
53
session {
54
	sql
55
}
56
 
57
post-auth {
58
	Post-Auth-Type REJECT {
59
		attr_filter.access_reject
60
	}
61
}
62
}