a simple flow rule like this:
{
"id": "000000001",
"priority": 1,
"match": {
"port_in": "endpoint:1",
},
"actions": [
{
"output_to_port": "endpoint:2"
},
{
"pop_vlan": true
}
]
}
doesn't work using ovsdb (is there no related rule using the command 'ovs-ofctl') unless in the "match" a 'vlan_id' is specified as in the following example:
{
"id": "000000001",
"priority": 1,
"match": {
"port_in": "endpoint:1",
"vlan_id":"0x20"
},
"actions": [
{
"output_to_port": "endpoint:2"
},
{
"pop_vlan": true
}
]
}
a simple flow rule like this: { "id": "000000001", "priority": 1, "match": { "port_in": "endpoint:1", }, "actions": [ { "output_to_port": "endpoint:2" }, { "pop_vlan": true } ] } doesn't work using ovsdb (is there no related rule using the command 'ovs-ofctl') unless in the "match" a 'vlan_id' is specified as in the following example: { "id": "000000001", "priority": 1, "match": { "port_in": "endpoint:1", "vlan_id":"0x20" }, "actions": [ { "output_to_port": "endpoint:2" }, { "pop_vlan": true } ] }