blob: f6068a0d885bf81f2c8c1ca98e2aa71ae46a2502 (
plain)
1
2
3
4
5
6
7
8
9
10
|
option space WLC;
option WLC.controller-address code 43 = text;
set vendor-string = option vendor-class-identifier;
class "access-points" {
match if substring (option vendor-class-identifier, 0, 12) = "Access Point";
vendor-option-space WLC;
log( info, concat( "AP: " , option vendor-class-identifier ));
option WLC.controller-address "151.216.128.130";
}
|