Blob Blame History Raw
# ether type vlan ip protocol 1 accept
[
    {
        "match": {
            "left": {
                "payload": {
                    "field": "type",
                    "protocol": "ether"
                }
            },
            "op": "==",
            "right": "vlan"
        }
    },
    {
        "match": {
            "left": {
                "payload": {
                    "field": "protocol",
                    "protocol": "ip"
                }
            },
            "op": "==",
            "right": 1
        }
    },
    {
        "accept": null
    }
]