summaryrefslogtreecommitdiff
path: root/keama/tests/subclassbinsel4.out
blob: aa70c9cdc1877975609da7b3ca32f635e0077afd (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
63
64
65
{
  # subclass declaration config
  # authoritative is mandatory
  "Dhcp4": {
    "option-def": [
      # options
      {
        "space": "dhcp4",
        "name": "myversion",
        "code": 251,
        "type": "uint16"
      }
    ],
    "client-classes": [
      # superclass declaration
      {
        "name": "foobar",
//      "spawning": false,
//      "submatch": {
//        "hardware": null
//      },
        "option-data": [
          {
            "space": "dhcp4",
            "name": "myversion",
            "code": 251,
            "data": "1"
          }
        ]
      },
      # simple subclass declaration
      /// subclass selector 0x0x0100070e364819
      {
        "name": "sub#foobar#0",
        "option-data": [
          {
            "space": "dhcp4",
            "name": "myversion",
            "code": 251,
            "data": "1"
          }
        ],
        /// from: match hardware
        /// data: 0x0100070e364819
        "test": "concat(substring(pkt4.htype,-1,all),pkt4.mac) == 0x0100070e364819"
      },
      # option setting subclass declaration
      /// subclass selector 0x0x01000bfd32e6fa
      {
        "name": "sub#foobar#1",
        "option-data": [
          {
            "space": "dhcp4",
            "name": "myversion",
            "code": 251,
            "data": "2"
          }
        ],
        /// from: match hardware
        /// data: 0x01000bfd32e6fa
        "test": "concat(substring(pkt4.htype,-1,all),pkt4.mac) == 0x01000bfd32e6fa"
      }
    ]
  }
}