mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-01-24 12:46:25 -06:00
21 lines
694 B
Python
21 lines
694 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 symmetrical Mbps are available to the edge of this network
|
|
pipeBandwidthCapacityMbps = 1000
|
|
|
|
# Interface connected to edge
|
|
interfaceA = 'eth1'
|
|
|
|
# Interface connected to core
|
|
interfaceB = 'eth2'
|
|
|
|
# Allow shell commands. Default is False where commands print to console. MUST BE ENABLED FOR PROGRAM TO FUNCTION
|
|
enableActualShellCommands = False
|
|
|
|
# Add 'sudo' before execution of any shell commands. May be required depending on distribution and environment.
|
|
runShellCommandsAsSudo = False
|