-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxdp_acl.json
47 lines (47 loc) · 966 Bytes
/
xdp_acl.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
[
{
"priority": 300,
"action": "accept",
"saddr": ["172.20.6.7/32"],
"daddr": ["172.20.6.6/32"],
"sport": {
"start": 0,
"end": 65535
},
"dport": {
"start": 0,
"end": 65535
},
"protocol": ["tcp"]
},
{
"priority": 200,
"action": "drop",
"saddr": ["192.168.1.6/32"],
"daddr": ["192.168.1.138/32"],
"sport": {
"start": 0,
"end": 65535
},
"dport":{
"start": 0,
"end": 65535
},
"protocol": ["icmp"]
},
{
"priority": 0,
"action": "accept",
"saddr": ["0.0.0.0/0"],
"daddr": ["0.0.0.0/0"],
"sport": {
"start": 0,
"end": 65535
},
"dport": {
"start": 0,
"end": 65535
},
"protocol": ["all"]
}
]