mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
MFC 12528
fix queue prios 1 = P2P* 2 = OthersL 3 = default 4 = OthersH 5 = Games 6 = VOIP 7 = empty acks
This commit is contained in:
parent
b3b6bd5d35
commit
8d80974785
@ -414,7 +414,7 @@ function step4_stepsubmitphpaction() {
|
||||
$queue['name'] = "qP2PUp";
|
||||
$queue['attachtoqueue'] = "{$upq}Root";
|
||||
$queue['associatedrule'] = 0;
|
||||
$queue['priority'] = 0;
|
||||
$queue['priority'] = 1;
|
||||
$queue['red'] = "on";
|
||||
$queue['ecn'] = "on";
|
||||
if ($config['shaper']['schedulertype'] == "hfsc") {
|
||||
@ -435,7 +435,7 @@ function step4_stepsubmitphpaction() {
|
||||
$queue['name'] = "qP2PDown";
|
||||
$queue['attachtoqueue'] = "{$downq}Root";
|
||||
$queue['associatedrule'] = 0;
|
||||
$queue['priority'] = 0;
|
||||
$queue['priority'] = 1;
|
||||
$queue['red'] = "on";
|
||||
$queue['ecn'] = "on";
|
||||
if ($config['shaper']['schedulertype'] == "hfsc") {
|
||||
@ -695,7 +695,7 @@ function step6_stepsubmitphpaction() {
|
||||
$queue['name'] = "qOthersUpH";
|
||||
$queue['attachtoqueue'] = "{$upq}Root";
|
||||
$queue['associatedrule'] = 0;
|
||||
$queue['priority'] = 6;
|
||||
$queue['priority'] = 4;
|
||||
$queue['red'] = "on";
|
||||
$queue['ecn'] = "on";
|
||||
if ($config['shaper']['schedulertype'] == "hfsc") {
|
||||
@ -715,7 +715,7 @@ function step6_stepsubmitphpaction() {
|
||||
$queue['name'] = "qOthersDownH";
|
||||
$queue['attachtoqueue'] = "{$downq}Root";
|
||||
$queue['associatedrule'] = 0;
|
||||
$queue['priority'] = 6;
|
||||
$queue['priority'] = 4;
|
||||
$queue['red'] = "on";
|
||||
$queue['ecn'] = "on";
|
||||
if ($config['shaper']['schedulertype'] == "hfsc") {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user