Skip to content

Commit

Permalink
Merge pull request #165 from River-sh/bugfix/fix_raven0_broadcast
Browse files Browse the repository at this point in the history
fix the broadcast in raven0
  • Loading branch information
BSWANG authored Mar 15, 2024
2 parents 654d9d3 + ddb2f33 commit 4ef1ee7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkg/networkengine/routedriver/vxlan/vxlan.go
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,10 @@ func (vx *vxlan) ensureVxlanLink(network *types.Network, vpnDriverMTUFn func() (
}(vpnDriverMTU, routeDriverMTU),
Flags: net.FlagUp,
},
VxlanId: vxlanID,
Age: 300,
Port: vxlanPort,
VxlanId: vxlanID,
Age: 300,
Port: vxlanPort,
Learning: true,
}
if !vx.isGatewayRole(network) {
vxlanLink.Group = net.ParseIP(network.LocalEndpoint.PrivateIP)
Expand Down

0 comments on commit 4ef1ee7

Please sign in to comment.