Skip to content

Commit 63fefef

Browse files
committed
Fix auto-egress-IP / EgressNetworkPolicy interaction
1 parent 286af89 commit 63fefef

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pkg/network/node/egressip_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ func TestEgressIP(t *testing.T) {
160160
err = assertFlowChanges(origFlows, flows,
161161
flowChange{
162162
kind: flowAdded,
163-
match: []string{"table=100", "reg0=44", "0xac110066->pkt_mark", "output:2"},
163+
match: []string{"table=100", "reg0=44", "0xac110066->pkt_mark", "goto_table:101"},
164164
},
165165
)
166166
if err != nil {
@@ -195,7 +195,7 @@ func TestEgressIP(t *testing.T) {
195195
err = assertFlowChanges(origFlows, flows,
196196
flowChange{
197197
kind: flowAdded,
198-
match: []string{"table=100", "reg0=45", "0xac110067->pkt_mark", "output:2"},
198+
match: []string{"table=100", "reg0=45", "0xac110067->pkt_mark", "goto_table:101"},
199199
},
200200
)
201201
if err != nil {
@@ -216,7 +216,7 @@ func TestEgressIP(t *testing.T) {
216216
err = assertFlowChanges(origFlows, flows,
217217
flowChange{
218218
kind: flowRemoved,
219-
match: []string{"table=100", "reg0=44", "0xac110066->pkt_mark", "output:2"},
219+
match: []string{"table=100", "reg0=44", "0xac110066->pkt_mark", "goto_table:101"},
220220
},
221221
)
222222
if err != nil {
@@ -262,7 +262,7 @@ func TestEgressIP(t *testing.T) {
262262
err = assertFlowChanges(origFlows, flows,
263263
flowChange{
264264
kind: flowRemoved,
265-
match: []string{"table=100", "reg0=45", "0xac110067->pkt_mark", "output:2"},
265+
match: []string{"table=100", "reg0=45", "0xac110067->pkt_mark", "goto_table:101"},
266266
},
267267
flowChange{
268268
kind: flowAdded,

pkg/network/node/ovscontroller.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ func (oc *ovsController) UpdateNamespaceEgressRules(vnid uint32, nodeIP, egressH
704704
otx.AddFlow("table=100, priority=100, reg0=%d, actions=drop", vnid)
705705
} else if nodeIP == oc.localIP {
706706
// Local Egress IP
707-
otx.AddFlow("table=100, priority=100, reg0=%d, ip, actions=set_field:%s->eth_dst,set_field:%s->pkt_mark,output:2", vnid, oc.tunMAC, egressHex)
707+
otx.AddFlow("table=100, priority=100, reg0=%d, ip, actions=set_field:%s->eth_dst,set_field:%s->pkt_mark,goto_table:101", vnid, oc.tunMAC, egressHex)
708708
} else {
709709
// Remote Egress IP; send via VXLAN
710710
otx.AddFlow("table=100, priority=100, reg0=%d, ip, actions=move:NXM_NX_REG0[]->NXM_NX_TUN_ID[0..31],set_field:%s->tun_dst,output:1", vnid, nodeIP)

0 commit comments

Comments
 (0)