summaryrefslogtreecommitdiffstats
path: root/examples/json-ruleset.nft
blob: acea1786649adffc081c4fc44d62208b4d1a5997 (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
{
  "nftables": [
    {
      "flush": {
        "ruleset": {
          "family": "ip"
        }
      }
    },
    {
      "table": {
        "family": "ip",
        "name": "x"
      }
    },
    {
      "chain": {
        "family": "ip",
        "table": "x",
        "name": "y",
        "type": "filter",
        "hook": "input",
        "prio": 0,
        "policy": "accept"
      }
    },
    {
      "rule": {
        "family": "ip",
        "table": "x",
        "chain": "y",
        "expr": [
          {
            "counter": {
              "packets": 0,
              "bytes": 0
            }
          }
        ]
      }
    }
  ]
}