The custom rates have left me more than a little perplexed, I have to be honest.
Should your custom rates have a proportional relationship to "% speed guaranteed per QOS cat" against total bandwidth? If not, is there a preferred way to decide the custom rates?
Code:
#################### Bandwidth Setup #####################
user_variables() {
#Percent of download speed guaranteed per QOS category, change below as desired (minimum value per section 5, sum should not be greater than 100)
NetControl_DownBandPercent=5 #This value can be adjust as desired ** no spaces before or after the "=" sign **
VoIP_DownBandPercent=20 #This value can be adjust as desired ** no decimals **
Gaming_DownBandPercent=15 #This value can be adjust as desired
Others_DownBandPercent=10 #This value can be adjust as desired #Note: New destination for unidentified traffic
WebSurfing_DownBandPercent=10 #This value can be adjust as desired
Video_DownBandPercent=30 #This value can be adjust as desired
FileTransfer_DownBandPercent=5 #This value can be adjust as desired
Default_DownBandPercent=5 #This value can be adjust as desired #Note: Original destination for unidentified traffic, repurposed for "Gaming Downloads on ports 80/443"
#Percent of upload speed guaranteed per QOS category, change below as desired (minimum value per section 5, sum should not be greater than 100)
NetControl_UpBandPercent=5 #This value can be adjust as desired
VoIP_UpBandPercent=20 #This value can be adjust as desired
Gaming_UpBandPercent=15 #This value can be adjust as desired
Others_UpBandPercent=30 #This value can be adjust as desired #Note: New destination for unidentified traffic
WebSurfing_UpBandPercent=10 #This value can be adjust as desired
Video_UpBandPercent=10 #This value can be adjust as desired
FileTransfer_UpBandPercent=5 #This value can be adjust as desired
Default_UpBandPercent=5 #This value can be adjust as desired #Note: Original destination for unidentified traffic, repurposed for "Gaming Downloads on ports 80/443"
}
I've kept the code as standard for the bandwidth setup as in the code above: So on my throttled connection of D20 / U9, for example, the % in Mb would equate to:
NetControl_DownBandPercent= 1mb (20/100)*5
VoIP_DownBandPercent= 4mb (20/100)*20
Gaming_DownBandPercent= 3mb
Others_DownBandPercent= 2mb
WebSurfing_DownBandPercent= 2mb
Video_DownBandPercent= 6mb
FileTransfer_DownBandPercent= 1mb
Default_DownBandPercent= 1mb
NetControl_UpBandPercent= 0.45mb (9/100)*5
VoIP_UpBandPercent= 1.8mb (9/100)*20
Gaming_UpBandPercent= 1.35mb
Others_UpBandPercent= 2.7mb
WebSurfing_UpBandPercent= 0.9mb
Video_UpBandPercent= 0.9mb
FileTransfer_UpBandPercent= 0.45mb
Default_UpBandPercent= 0.45mb
Would these figures, discounting NetControl yet ensuring total rate = ciel, be a decent approximation for custom rates, or am I wildly misinterpreting this?