diff --git a/pkg/link/spoofcheck.go b/pkg/link/spoofcheck.go index 7ff4ad3c1..6c1bd5354 100644 --- a/pkg/link/spoofcheck.go +++ b/pkg/link/spoofcheck.go @@ -195,12 +195,10 @@ func (sc *SpoofChecker) matchMacRule(chain string) *schema.Rule { } func (sc *SpoofChecker) dropRule(chain string) *schema.Rule { - macRulesIndex := nft.NewRuleIndex() return &schema.Rule{ Family: schema.FamilyBridge, Table: natTableName, Chain: chain, - Index: macRulesIndex.Next(), Expr: []schema.Statement{ {Verdict: schema.Verdict{SimpleVerdict: schema.SimpleVerdict{Drop: true}}}, }, diff --git a/pkg/link/spoofcheck_test.go b/pkg/link/spoofcheck_test.go index a7ed7ee58..0ed8dde80 100644 --- a/pkg/link/spoofcheck_test.go +++ b/pkg/link/spoofcheck_test.go @@ -254,7 +254,6 @@ func assertExpectedRulesInSetupConfig(c configurerStub) { "comment":"macspoofchk-container99-net1"}}, {"rule":{"family":"bridge","table":"nat","chain":"cni-br-iface-container99-net1-mac", "expr":[{"drop":null}], - "index":0, "comment":"macspoofchk-container99-net1"}} ]}` ExpectWithOffset(1, string(jsonConfig)).To(MatchJSON(expectedConfig))