Update ispConfig.example.py

This commit is contained in:
Robert Chacón
2023-04-23 13:46:03 -06:00
committed by GitHub
parent f5d6257652
commit 20d69aa6d5

View File

@@ -7,13 +7,16 @@ sqm = 'cake diffserv4'
# ensure actual shaping. After changing this value, run "sudo systemctl restart LibreQoS.service" # ensure actual shaping. After changing this value, run "sudo systemctl restart LibreQoS.service"
monitorOnlyMode = False monitorOnlyMode = False
# How many Mbps are available to the edge of this network # How many Mbps are available to the edge of this network.
# Any circuits, generated nodes, or network.json nodes, will all be capped at no more than this amount.
upstreamBandwidthCapacityDownloadMbps = 1000 upstreamBandwidthCapacityDownloadMbps = 1000
upstreamBandwidthCapacityUploadMbps = 1000 upstreamBandwidthCapacityUploadMbps = 1000
# Devices in ShapedDevices.csv without a defined ParentNode will be placed under a generated # Consider these values your bandwidth bottleneck per-CPU-core.
# parent node, evenly spread out across CPU cores. Here, define the bandwidth limit for each # This will depend on your CPU's single-thread passmark score.
# of those generated parent nodes. # Devices in ShapedDevices.csv without a defined ParentNode (such as if you have a flat {} network)
# will be placed under one of these generated parent node, evenly spread out across CPU cores.
# This defines the bandwidth limit for each of those generated parent nodes.
generatedPNDownloadMbps = 1000 generatedPNDownloadMbps = 1000
generatedPNUploadMbps = 1000 generatedPNUploadMbps = 1000