Skip to content

Commit ede640d

Browse files
committed
vxlan device mask to 32
1 parent 09da307 commit ede640d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ func main() {
8383

8484
go handleSubnets(ctx, sn, &sm, dev)
8585

86-
if err := dev.configure(fmt.Sprintf("%v/30", snIP.ToIP())); err != nil {
86+
if err := dev.configure(fmt.Sprintf("%v/32", snIP.ToIP())); err != nil {
8787
panic(fmt.Errorf("failed to configure interface %s: %s", dev.link.Attrs().Name, err))
8888
}
8989

0 commit comments

Comments
 (0)