From: Wolfgang Bumiller Date: Mon, 29 Jan 2018 09:49:14 +0000 (+0100) Subject: net: remove flowid in traffic limit commands X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=commitdiff_plain;h=edbdf0b240b351a3dbfa1d6126d35fad346464b1 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 --- diff --git a/src/PVE/Network.pm b/src/PVE/Network.pm index 627e764..de8b289 100644 --- a/src/PVE/Network.pm +++ b/src/PVE/Network.pm @@ -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";