If we use OFPP_LOCAL then the code that implements the normal action won't
get a chance to learn from these packets.
This change seems somewhat risky, since in-band control is so touchy, which
is why it is broken out as a separate commit that can easily be reverted.
memset(&flow, 0, sizeof flow);
memcpy(flow.dl_dst, local_mac, ETH_ADDR_LEN);
setup_flow(in_band, IBR_TO_LOCAL_PORT, &flow, OFPFW_DL_DST,
- OFPP_LOCAL);
+ OFPP_NORMAL);
} else {
drop_flow(in_band, IBR_TO_LOCAL_PORT);
}