Skip to content

Commit

Permalink
Merge pull request #1047 from JacobTanenbaum/release-4.8-BZ2077370
Browse files Browse the repository at this point in the history
Bug 2077370: [release-4.8] fix ipv6 network policy
  • Loading branch information
openshift-merge-robot committed May 3, 2022
2 parents 2661138 + d23d529 commit 3726afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go-controller/pkg/ovn/policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ func (oc *Controller) createDefaultDenyPortGroup(ns string, nsInfo *namespaceInf
return fmt.Errorf("failed to create default deny ACL for port group %v", err)
}

match = getACLMatch(portGroupName, "arp", policyType)
match = getACLMatch(portGroupName, "(arp || nd)", policyType)
err = addACLPortGroup(ns, portGroupUUID, direction,
types.DefaultAllowPriority, match, "allow", policyType, "", "ARPallowPolicy")
if err != nil {
Expand Down

0 comments on commit 3726afe

Please sign in to comment.