Hi,Json

>However, in terms of priority values, port 5002 was supposed to have the 
>higher priority value and occupy the bandwidth but its bandwidth dropped at >t 
>= 4 after the client 1(port 5001, priority = 1) made a request of data. 
>It seemed that the priority setting didn’t work at all. 

    curl -X POST -d '{"priority":"3",
                      "match": {"nw_dst": "10.0.0.1", "nw_proto": "UDP", 
"tp_dst": "5002"},
                      "actions":{"queue": "0"}}' 
http://localhost:8080/qos/rules/0000000000000001

"priority" of this command means that matching precedence of the flow entry.
(Please check "7.3.4.1 Modify Flow Entry Message" of OFSpec 1.3.4.)
Therefore, there is no related to priority of QoS.

>Therefore, could you provide me a testing approach to verify the priority 
>mechanism? 

If you want to treat CL2 as a high priority than CL1,
For example, Why do not try to set as follows?

Change before (current))
  port 5001 (CL1) -> Set to Queue 0 (max_rate: 0.85M bits / sec)
  port 5002 (CL2) -> Set to Queue 0 (max_rate: 0.85M bits / sec)

After the change)
  port 5001 (CL1) -> Set to Queue 0 (max_rate: 0.2M bits / sec)
  port 5002 (CL2) -> Set to Queue 1 (min_rate: 0.85M bits / sec)

The result should be as follows:
  * The traffic sent to the port 5001 is shaped with up to 200Kbps.
  * The traffic sent to the port 5002 is guaranteed 850Kbps bandwidth.

On 2014年12月10日 13:52, 許東豐 wrote:
> To whom it may concern:
>     My name is Jason. My team members and are are working the the QoS 
> priority setting these days. We have modified the code(rest_qos.py) as 
> indicated on the Gitnub and tried it. However, we couldn't make sure that the 
> priority mechanism works or not in our testing case. Could you please offer 
> us one simple approach to show the QoS priority mechanism works ? Our testing 
> case PDF file is attached to the mailed and I have described the problems in 
> the file. We have difficulty in demonstrating the QoS Priority mechanism to 
> our supervisors. We would appreciate your kind help!
> 
> -- 
> Best wishes,
> 
> Jason Syu
> 
> Department of Electronic and Computer Engineering,
> National Taiwan University of Science and Technology (NTUST)
> Email(1): [email protected] <mailto:[email protected]>
> Email(2): [email protected] <mailto:[email protected]>
> Tel :  0910137762
> 
> 
> 
> ------------------------------------------------------------------------------
> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> with Interactivity, Sharing, Native Excel Exports, App Integration & more
> Get technology previously reserved for billion-dollar corporations, FREE
> http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk
> 
> 
> 
> _______________________________________________
> Ryu-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/ryu-devel
> 

------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to