Subversion Repositories ALCASAR

Rev

Rev 2422 | 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
1279 richard 30
}
31
 
32
authenticate {
1464 richard 33
	Auth-Type PAP {
34
		pap
35
	}
1279 richard 36
}
37
 
38
accounting {
2423 richard 39
	sql
1279 richard 40
}
41
 
42
session {
43
	sql
44
}
45
 
46
post-auth {
47
	Post-Auth-Type REJECT {
48
		attr_filter.access_reject
49
	}
50
}
51
}
52
 
53