@@ -241,10 +241,10 @@ func (plugin *OsdnNode) SetupSDN() (bool, error) {
241
241
// vxlan0
242
242
otx .AddFlow ("table=0, priority=200, in_port=1, arp, nw_src=%s, nw_dst=%s, actions=move:NXM_NX_TUN_ID[0..31]->NXM_NX_REG0[],goto_table:10" , clusterNetworkCIDR , localSubnetCIDR )
243
243
otx .AddFlow ("table=0, priority=200, in_port=1, ip, nw_src=%s, nw_dst=%s, actions=move:NXM_NX_TUN_ID[0..31]->NXM_NX_REG0[],goto_table:10" , clusterNetworkCIDR , localSubnetCIDR )
244
- otx .AddFlow ("table=0, priority=200, in_port=1, ip, nw_src=%s, nw_dst=224.0.0.0/3 , actions=move:NXM_NX_TUN_ID[0..31]->NXM_NX_REG0[],goto_table:10" , clusterNetworkCIDR )
244
+ otx .AddFlow ("table=0, priority=200, in_port=1, ip, nw_src=%s, nw_dst=224.0.0.0/4 , actions=move:NXM_NX_TUN_ID[0..31]->NXM_NX_REG0[],goto_table:10" , clusterNetworkCIDR )
245
245
otx .AddFlow ("table=0, priority=150, in_port=1, actions=drop" )
246
246
// tun0
247
- otx .AddFlow ("table=0, priority=250, in_port=2, ip, nw_dst=224.0.0.0/3 , actions=drop" )
247
+ otx .AddFlow ("table=0, priority=250, in_port=2, ip, nw_dst=224.0.0.0/4 , actions=drop" )
248
248
otx .AddFlow ("table=0, priority=200, in_port=2, arp, nw_src=%s, nw_dst=%s, actions=goto_table:30" , localSubnetGateway , clusterNetworkCIDR )
249
249
otx .AddFlow ("table=0, priority=200, in_port=2, ip, actions=goto_table:30" )
250
250
otx .AddFlow ("table=0, priority=150, in_port=2, actions=drop" )
@@ -276,9 +276,9 @@ func (plugin *OsdnNode) SetupSDN() (bool, error) {
276
276
otx .AddFlow ("table=30, priority=100, ip, nw_dst=%s, actions=goto_table:90" , clusterNetworkCIDR )
277
277
278
278
// Multicast coming from the VXLAN
279
- otx .AddFlow ("table=30, priority=50, in_port=1, ip, nw_dst=224.0.0.0/3 , actions=goto_table:120" )
279
+ otx .AddFlow ("table=30, priority=50, in_port=1, ip, nw_dst=224.0.0.0/4 , actions=goto_table:120" )
280
280
// Multicast coming from local pods
281
- otx .AddFlow ("table=30, priority=25, ip, nw_dst=224.0.0.0/3 , actions=goto_table:110" )
281
+ otx .AddFlow ("table=30, priority=25, ip, nw_dst=224.0.0.0/4 , actions=goto_table:110" )
282
282
283
283
otx .AddFlow ("table=30, priority=0, ip, actions=goto_table:100" )
284
284
otx .AddFlow ("table=30, priority=0, arp, actions=drop" )
0 commit comments