-
Notifications
You must be signed in to change notification settings - Fork 0
/
lighting-example.json
55 lines (55 loc) · 1.52 KB
/
lighting-example.json
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
{
"ietf-mud:support-information": {
"last-update": "2016-05-18T20:00:50Z",
"cache-validity": 1440
},
"ietf-access-control-list:access-lists": {
"acl": [ {
"acl-name": "inbound-stuff",
"acl-type" : "ipv4-acl",
"ietf-mud:direction" : "to-device",
"access-list-entries": {
"ace": [
{
"rule-name": "access-cloud",
"matches": {
"ietf-acl-dnsname:source-hostname": "http://www.columbia.edu/index.html",
"protocol" : 6,
"destination-port-range" : {
"lower-port" : 6000,
"upper-port" : 6000
}
},
"actions" : {
"permit" : [null]
}
}
]
}
},
{
"acl-name": "outbound-stuff",
"acl-type" : "ipv4-acl",
"ietf-mud:direction" : "from-device",
"access-list-entries": {
"ace": [
{
"rule-name": "access-cloud",
"matches": {
"ietf-acl-dnsname:destination-hostname": "http://www.columbia.edu/index.html",
"protocol" : 6,
"source-port-range" : {
"lower-port" : 80,
"upper-port" : 80
}
},
"actions" : {
"permit" : [null]
}
}
]
}
}
]
}
}