mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2024-11-29 19:33:49 -06:00
26 lines
947 B
Python
26 lines
947 B
Python
|
#'fq_codel' or 'cake'
|
||
|
# Cake requires many specific packages and kernel changes:
|
||
|
# https://www.bufferbloat.net/projects/codel/wiki/Cake/
|
||
|
# https://github.com/dtaht/tc-adv
|
||
|
fqOrCAKE = 'fq_codel'
|
||
|
|
||
|
# How many Mbps are available to the edge of this network
|
||
|
upstreamBandwidthCapacityDownloadMbps = 1000
|
||
|
upstreamBandwidthCapacityUploadMbps = 1000
|
||
|
|
||
|
# Traffic from devices not specified in Shaper.csv will be rate limited by an HTB of this many Mbps
|
||
|
defaultClassCapacityDownloadMbps = 1000
|
||
|
defaultClassCapacityUploadMbps = 1000
|
||
|
|
||
|
# Interface connected to core router
|
||
|
interfaceA = 'eth1'
|
||
|
|
||
|
# Interface connected to edge router
|
||
|
interfaceB = 'eth2'
|
||
|
|
||
|
# Allow shell commands. False causes commands print to console only without being executed. MUST BE ENABLED FOR PROGRAM TO FUNCTION
|
||
|
enableActualShellCommands = True
|
||
|
|
||
|
# Add 'sudo' before execution of any shell commands. May be required depending on distribution and environment.
|
||
|
runShellCommandsAsSudo = False
|