Skip to content

Commit

Permalink
Send Gratuitous ARP after IPs are set
Browse files Browse the repository at this point in the history
  • Loading branch information
TothFerenc committed Nov 16, 2021
1 parent f1f128e commit 3b274e2
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion plugins/main/ipvlan/ipvlan.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ import (
"encoding/json"
"errors"
"fmt"
"net"
"runtime"

"github.com/j-keck/arping"
"github.com/vishvananda/netlink"

"github.com/containernetworking/cni/pkg/skel"
Expand Down Expand Up @@ -254,7 +256,21 @@ func cmdAdd(args *skel.CmdArgs) error {
result.Interfaces = []*current.Interface{ipvlanInterface}

err = netns.Do(func(_ ns.NetNS) error {
return ipam.ConfigureIface(args.IfName, result)
if err := ipam.ConfigureIface(args.IfName, result); err != nil {
return err
}

contVeth, err := net.InterfaceByName(args.IfName)
if err != nil {
return fmt.Errorf("failed to look up %q: %v", args.IfName, err)
}

for _, ipc := range result.IPs {
if ipc.Address.IP.To4() != nil {
_ = arping.GratuitousArpOverIface(ipc.Address.IP, *contVeth)
}
}
return nil
})
if err != nil {
return err
Expand Down

0 comments on commit 3b274e2

Please sign in to comment.