Files
LibreQoS/ispConfig.py

23 lines
757 B
Python
Raw Normal View History

2020-10-03 07:49:09 -06:00
#'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'
2020-10-07 04:02:44 -06:00
# How many symmetrical Mbps are available to the edge of this network
2021-01-10 13:21:46 -07:00
pipeBandwidthCapacityMbps = 1000
2020-10-03 07:49:09 -06:00
2021-04-11 21:17:50 -06:00
defaultClassCapacityMbps = 750
# Interface connected to core router
2021-01-10 13:21:46 -07:00
interfaceA = 'eth1'
2020-10-03 07:49:09 -06:00
2021-04-11 21:17:50 -06:00
# Interface connected to edge router
2021-01-10 13:21:46 -07:00
interfaceB = 'eth2'
2020-10-03 07:49:09 -06:00
2021-02-27 09:19:04 -07:00
# Allow shell commands. False causes commands print to console only without being executed. MUST BE ENABLED FOR PROGRAM TO FUNCTION
enableActualShellCommands = True
2020-10-03 07:49:09 -06:00
2020-10-07 04:02:44 -06:00
# Add 'sudo' before execution of any shell commands. May be required depending on distribution and environment.
2020-10-03 07:49:09 -06:00
runShellCommandsAsSudo = False