You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Ensure egress root qdisc for vxlan interface, need a classful qdisc for pedit action.
284
+
iferr:=netlink.QdiscReplace(netlink.NewPrio(
285
+
netlink.QdiscAttrs{
286
+
LinkIndex: link.Index,
287
+
Parent: netlink.HANDLE_ROOT,
288
+
})); err!=nil {
289
+
returnfmt.Errorf("failed to ensure root qdisc for vxlan interface: %v", err)
290
+
}
291
+
292
+
qdiscs, err:=netlink.QdiscList(link)
293
+
iferr!=nil {
294
+
returnfmt.Errorf("failed to list qdisc for vxlan interface: %v", err)
295
+
}
296
+
297
+
varrootQdisc netlink.Qdisc
298
+
for_, item:=rangeqdiscs {
299
+
ifitem.Attrs().Parent==netlink.HANDLE_ROOT {
300
+
rootQdisc=item
301
+
}
302
+
}
303
+
304
+
tcPath, err:=exec.LookPath("tc")
305
+
iferr!=nil {
306
+
returnfmt.Errorf("tc command not found: %v", err)
307
+
}
308
+
309
+
varstderr bytes.Buffer
310
+
varstdout bytes.Buffer
311
+
312
+
// This filter will transform multicast/broadcast dst mac addresses (of witch the last bit of the first byte is 1) to broadcastFdbMac.
313
+
// TODO: tc filter replace command seems not upgrade filter while command changed
314
+
runCmd:= exec.Cmd{
315
+
Path: tcPath,
316
+
Args: append([]string{tcPath},
317
+
// "tc filter replace dev eth0.vxlan4 parent 8001: handle 800::800 prio 1 u32 match u8 0x01 0x01 at -14 action pedit ex munge eth dst set ff:ff:ff:ff:ff:f1"
0 commit comments