Subversion Repositories ALCASAR

Rev

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

Rev Author Line No. Line
2420 richard 1
server default {
2
listen {
3
	type = auth
2423 richard 4
	ipaddr = *
2420 richard 5
	port = 0
6
	limit {
7
	      max_connections = 16
8
	      lifetime = 0
9
	      idle_timeout = 30
10
	}
11
}
12
 
13
listen {
2423 richard 14
	type = acct
15
	ipaddr = *
2420 richard 16
	port = 0
17
	limit {
2423 richard 18
		max_pps = 0
2420 richard 19
	}
20
}
21
 
1279 richard 22
authorize {
23
	sql
2423 richard 24
	noresetcounter
25
	dailycounter
26
	monthlycounter
1279 richard 27
	expiration
28
	logintime
1464 richard 29
	pap
2446 richard 30
	# ldap {
31
	# fail=1
32
    # }
1279 richard 33
}
34
 
35
authenticate {
1464 richard 36
	Auth-Type PAP {
37
		pap
38
	}
2446 richard 39
	# Auth-Type LDAP { 
40
	# ldap 
41
    # }
1279 richard 42
}
43
 
44
accounting {
2423 richard 45
	sql
1279 richard 46
}
47
 
48
session {
49
	sql
50
}
51
 
52
post-auth {
53
	Post-Auth-Type REJECT {
54
		attr_filter.access_reject
55
	}
56
}
57
}
58
 
59