From edbdf0b240b351a3dbfa1d6126d35fad346464b1 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Mon, 29 Jan 2018 10:49:14 +0100 Subject: [PATCH] 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 --- src/PVE/Network.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.39.2