diff options
Diffstat (limited to 'tests/py/ip/reject.t.json.output')
-rw-r--r-- | tests/py/ip/reject.t.json.output | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/py/ip/reject.t.json.output b/tests/py/ip/reject.t.json.output new file mode 100644 index 00000000..099320c6 --- /dev/null +++ b/tests/py/ip/reject.t.json.output @@ -0,0 +1,24 @@ +# reject with icmp type port-unreachable +[ + { + "reject": null + } +] + +# mark 0x80000000 reject with tcp reset +[ + { + "match": { + "left": { + "meta": "mark" + }, + "right": 2147483648 + } + }, + { + "reject": { + "type": "tcp reset" + } + } +] + |