Hi I am trying to add under QOS Traffic Priority enable trafic and VOIP priority and QOS classification rules COS and DSCP via command line without success, can you please help?
config set qosEnable 1
config set voipEnable 1
config set classificationListTable
config set classificationRuleQueue 3
config set classificationRuleType 3
config set classificationRuleValue 5
config save
config apply
Hello @Jorge_Arriaga , if you want to add new rule to the table you have to do it this way
config set {name_of_the_table} {number_of_the_rule} {name_of_parameter} {value}
In your case:
config set classificationListTable 3 classificationRuleQueue 3
config set classificationListTable 3 classificationRuleType 3
config set classificationListTable 3 classificationRuleValue 5
config save
config apply
if you want to add next rule you just change the number of the rule:
config set classificationListTable 4 classificationRuleQueue 3
Or if you want to edit, for example rule #2, you have just put there number of existing rule:
config set classificationListTable 2 classificationRuleQueue 3
3 Likes
Awesome. Thank you i Will give it a try
1 Like