Subversion Repositories ALCASAR

Rev

Rev 2513 | Go to most recent revision | Details | 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
24
	noresetcounter
25
	dailycounter
26
	monthlycounter
27
	expiration
28
	logintime
29
	pap
30
	ldap {
31
		fail = 1
32
	}
33
	if ((ok || updated) && User-Password) {
34
		update control {
35
			Auth-Type := ldap
36
		}
37
	}
38
}
39
 
40
authenticate {
41
	Auth-Type PAP {
42
		pap
43
	}
44
	Auth-Type LDAP { 
45
		ldap 
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
}