5
0
mirror of git://git.proxmox.com/git/pve-common.git synced 2025-01-10 09:17:37 +03:00

net: remove flowid in traffic limit commands

We don't use them and iproute2 4.13.0 has an issue parsing
parameters after a policing description.

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2018-01-29 10:49:14 +01:00
parent caf3f3a7a1
commit edbdf0b240

View File

@ -102,7 +102,7 @@ sub setup_tc_rate_limit {
run_command("/sbin/tc filter add dev $iface parent ffff: " .
"prio 50 basic " .
"police rate ${rate}bps burst ${burst}b mtu 64kb " .
"drop flowid :1");
"drop");
if ($debug) {
print "DEBUG tc settings\n";