From 8fbe0a609bd4feb49a39c288d4304d5f4a8ae3aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Chac=C3=B3n?= Date: Thu, 8 Sep 2022 05:44:22 -0600 Subject: [PATCH] Add support for generated parent nodes (CPU core balancing) --- v1.2/ispConfig.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/v1.2/ispConfig.py b/v1.2/ispConfig.py index 322bcd0a..f77d5ab9 100644 --- a/v1.2/ispConfig.py +++ b/v1.2/ispConfig.py @@ -8,6 +8,12 @@ fqOrCAKE = 'cake diffserv4' upstreamBandwidthCapacityDownloadMbps = 1000 upstreamBandwidthCapacityUploadMbps = 1000 +# Devices in ShapedDevices.csv without a defined ParentNode will be placed under a generated +# parent node, evenly spread out across CPU cores. Here, define the bandwidth limit for each +# of those generated parent nodes. +generatedPNDownloadMbps = 1000 +generatedPNUploadMbps = 1000 + # Traffic from devices not specified in Shaper.csv will be rate limited by an HTB of this many Mbps defaultClassCapacityDownloadMbps = 500 defaultClassCapacityUploadMbps = 500