LibreQoS/ispConfig.py
2021-01-10 13:21:46 -07:00

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