@@ -313,10 +313,14 @@ func (plugin *OsdnNode) SetupSDN() (bool, error) {
313
313
// eg, "table=100, reg0=${tenant_id}, priority=2, ip, nw_dst=${external_cidr}, actions=drop
314
314
otx .AddFlow ("table=100, priority=0, actions=output:2" )
315
315
316
- // Table 110: multicast delivery from local pods to the VXLAN; only one rule , updated by updateVXLANMulticastRules () in subnets .go
317
- // eg, "table=110, priority=100, actions=move:NXM_NX_REG0[]->NXM_NX_TUN_ID[0..31],set_field:${remote_node_ip_1}->tun_dst,output:1,set_field:${remote_node_ip_2}->tun_dst,output:1, goto_table:120"
316
+ // Table 110: outbound multicast filtering , updated by updateLocalMulticastFlows () in pod .go
317
+ // eg, "table=110, priority=100, reg0=${tenant_id}, actions= goto_table:111
318
318
otx .AddFlow ("table=110, priority=0, actions=drop" )
319
319
320
+ // Table 111: multicast delivery from local pods to the VXLAN; only one rule, updated by updateVXLANMulticastRules() in subnets.go
321
+ // eg, "table=111, priority=100, actions=move:NXM_NX_REG0[]->NXM_NX_TUN_ID[0..31],set_field:${remote_node_ip_1}->tun_dst,output:1,set_field:${remote_node_ip_2}->tun_dst,output:1,goto_table:120"
322
+ otx .AddFlow ("table=111, priority=0, actions=drop" )
323
+
320
324
// Table 120: multicast delivery to local pods (either from VXLAN or local pods); updated by updateLocalMulticastFlows() in pod.go
321
325
// eg, "table=120, priority=100, reg0=${tenant_id}, actions=output:${ovs_port_1},output:${ovs_port_2}"
322
326
otx .AddFlow ("table=120, priority=0, actions=drop" )
0 commit comments