mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2024-11-24 09:10:16 -06:00
9e984b1216
Clean up old versions
34 lines
1.2 KiB
Python
34 lines
1.2 KiB
Python
#'fq_codel' or 'cake diffserv4'
|
|
#'cake diffserv4' is recommended
|
|
|
|
#fqOrCAKE = 'fq_codel'
|
|
fqOrCAKE = 'cake diffserv4'
|
|
|
|
# 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 = 500
|
|
defaultClassCapacityUploadMbps = 500
|
|
|
|
# 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
|
|
|
|
# Optional UISP integration
|
|
# Everything before /nms/ on your UISP instance
|
|
UISPbaseURL = 'https://examplesite.com'
|
|
# UISP Auth Token
|
|
uispAuthToken = ''
|
|
# Whether to shape router at customer premises, or instead shape the station radio. When station radio is in router mode, use 'station'. Otherwise, use 'router'.
|
|
shapeRouterOrStation = 'router'
|