diff --git a/pkg/util/bandwidth/linux.go b/pkg/util/bandwidth/linux.go index ab68141d623..13d6a7e58e0 100644 --- a/pkg/util/bandwidth/linux.go +++ b/pkg/util/bandwidth/linux.go @@ -255,7 +255,7 @@ func (t *tcShaper) ReconcileInterface() error { return t.initializeInterface() } fields := strings.Split(output, " ") - if len(fields) != 12 || fields[1] != "htb" || fields[2] != "1:" { + if len(fields) < 12 || fields[1] != "htb" || fields[2] != "1:" { if err := t.deleteInterface(fields[2]); err != nil { return err }