blob: d19495a2f64ec639931d911a72f4782400f8b3c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#
# PRE: update
#
# Check attribute info xlats work correctly
#
update {
control:Cleartext-Password := 'hello'
reply:Filter-Id := 'filter'
}
update request {
Reply-Message := 'foo'
FreeRADIUS-Proxied-To := 127.0.0.1
}
if ("%{attr:&FreeRADIUS-Proxied-To}" != 'FreeRADIUS-Proxied-To') {
update reply {
Filter-Id += 'Fail 0'
}
}
if ("%{attr_num:&FreeRADIUS-Proxied-To}" != 1) {
update reply {
Filter-Id += 'Fail 2'
}
}
if ("%{vendor:&FreeRADIUS-Proxied-To}" != 'FreeRADIUS') {
update reply {
Filter-Id += 'Fail 3'
}
}
if ("%{vendor_num:&FreeRADIUS-Proxied-To}" != 11344) {
update reply {
Filter-Id += 'Fail 4'
}
}
if ("%{attr:&Reply-Message}" != 'Reply-Message') {
update reply {
Filter-Id += 'Fail 5'
}
}
if ("%{attr_num:&Reply-Message}" != 18) {
update reply {
Filter-Id += 'Fail 6'
}
}
if ("%{vendor:&Reply-Message}" != '') {
update reply {
Filter-Id += 'Fail 7'
}
}
if ("%{vendor_num:&Reply-Message}" != 0) {
update reply {
Filter-Id += 'Fail 8'
}
}
|