I am trying to use the min-rate feature to implement some level of QoS. Below are the details:
1. Using dpctl, I configured 2 queues (Queue 1 and 2) on Port 3 of the Pronto 3290 switch. 2. I am now attempting to map tcp and udp flows to these queues. 3. I assumed the following actions would do the mapping: # Map tcp flows to Queue 1 of port 3 actions = [[openflow.OFPAT_ENQUEUE,[3,1]]] # Map udp flows to Queue 2 of port 3 actions = [[openflow.OFPAT_ENQUEUE,[3,2]]] This test is similar to what was done from the flowing link using the reference switch: http://www.openflow.org/wk/index.php/Slicing NB. I am also using FlowVisor. Thanks, -Ali ----- Original Message ----- From: "Rob Sherwood" <[email protected]> To: "Ali Sydney" <[email protected]> Cc: [email protected] Sent: Monday, September 26, 2011 1:19:39 AM Subject: Re: [openflow-discuss] OpenFlow error: invalid action type 11 Are you sure that the switch firmware you're using supports the enqueue action? Is it Indigo? A little more information about what you're doing could help debug this. Thanks, - Rob . On Sun, Sep 25, 2011 at 12:51 PM, Ali Sydney <[email protected]> wrote: > Hi Everyone, > I am attempting to foward all traffic that meets a particular > criteria to Queue 1 of Port 3 on a Pronto 3290, and I am receiving the > following error: > > OpenFlow error: invalid action type 11 > > Below is the action used: > > actions = [[openflow.OFPAT_ENQUEUE,[3,1]]] > > REF: Below is a snippet from the code: > > flow = extract_flow(packet) > flow[core.IN_PORT] = inport > actions = [[openflow.OFPAT_ENQUEUE,[3,1]]] > inst.install_datapath_flow(dpid, flow, CACHE_TIMEOUT, > openflow.OFP_FLOW_PERMANENT, actions, > bufid, openflow.OFP_DEFAULT_PRIORITY, > inport, buf) > > Is there something wrong with my action definition? > > Thanks.. > -Ali > > > _______________________________________________ > openflow-discuss mailing list > [email protected] > https://mailman.stanford.edu/mailman/listinfo/openflow-discuss > _______________________________________________ openflow-discuss mailing list [email protected] https://mailman.stanford.edu/mailman/listinfo/openflow-discuss
