Subversion Repositories ALCASAR

Rev

Rev 2467 | 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 {
23
	sql
2513 tom.houday 24
	expire_on_login
2467 richard 25
	noresetcounter
26
	dailycounter
27
	monthlycounter
28
	expiration
2513 tom.houday 29
	counterCoovaChilliMaxTotalOctetsDaily
30
	counterCoovaChilliMaxTotalOctetsMonthly
2467 richard 31
	logintime
32
	pap
33
	ldap {
34
		fail = 1
35
	}
36
	if ((ok || updated) && User-Password) {
37
		update control {
38
			Auth-Type := ldap
39
		}
40
	}
41
}
42
 
43
authenticate {
44
	Auth-Type PAP {
45
		pap
46
	}
47
	Auth-Type LDAP { 
48
		ldap 
49
    }
50
}
51
 
52
accounting {
53
	sql
54
}
55
 
56
session {
57
	sql
58
}
59
 
60
post-auth {
61
	Post-Auth-Type REJECT {
62
		attr_filter.access_reject
63
	}
64
}
65
}