X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=ovn%2Fnorthd%2Fovn-northd.c;fp=ovn%2Fnorthd%2Fovn-northd.c;h=c2cf15ebaf6fc0aabced4bc8240f86ef58c36fb0;hb=e9bc5de158e0024a14dddfe44f840b6da528be4f;hp=1599e1809fda330af938ea1b4ed1b9bfd5ea0a05;hpb=c47cb7e67da15041671d77145116d13aa3317342;p=cascardo%2Fovs.git diff --git a/ovn/northd/ovn-northd.c b/ovn/northd/ovn-northd.c index 1599e1809..c2cf15eba 100644 --- a/ovn/northd/ovn-northd.c +++ b/ovn/northd/ovn-northd.c @@ -1960,9 +1960,8 @@ build_lrouter_flows(struct hmap *datapaths, struct hmap *ports, * (i.e. the incoming locally attached net) does not matter. * The ip.ttl also does not matter (RFC1812 section 4.2.2.9) */ match = xasprintf( - "(ip4.dst == "IP_FMT" || ip4.dst == "IP_FMT") && " - "icmp4.type == 8 && icmp4.code == 0", - IP_ARGS(op->ip), IP_ARGS(op->bcast)); + "ip4.dst == "IP_FMT" && icmp4.type == 8 && icmp4.code == 0", + IP_ARGS(op->ip)); char *actions = xasprintf( "ip4.dst = ip4.src; " "ip4.src = "IP_FMT"; "