Please don't drop the list.

I don't use POX, so you can list stuff that doesn't work with POX all
day and I won't be able to help.  But if you provide a hex dump of the
OpenFlow message, then I can tell you what it's doing.

On Thu, Dec 05, 2013 at 07:56:51PM -0800, Jayanth Silesh wrote:
> when I do this,
> msg1 = nx.nx_flow_mod()
> 
> 1.msg1.match.dl_type = 0x0800
> 2.msg1.match.nw_proto = 6
> 
> It throws error for ??both.
> 
> I have tried it with nx_ and ofp_ , but it throws errors.
> 
> The only thing that actually works is??
> msg1.dl_type # for which dl_type is not defined in nx_flow_mod???s match
> 
> 
> 
> 
> On December 5, 2013 at 7:15:25 PM, Jayanth Silesh 
> (jayanthsileshs.for...@gmail.com) wrote:
> 
> Hi Ben,
> Trying to send this msg in order to add the table_id field and nw_proto from 
> the POX
>     msg1 = nx.nx_flow_mod()
>     msg1.match.of_dl_type = pkt.ethernet.IP_TYPE
>      
>     msg1.match.of_nw_proto = 6
>     msg1.actions.append(nx.nx_action_resubmit.resubmit_table(table = 1))
>     event.connection.send(msg1)
> 
> 
> The nw_proto field doesn???t get added.
> 
> 
> Thanks,
> Jayanth  
> Graduate Student
> USC
> 
> 
> 
> On December 5, 2013 at 7:11:40 PM, Ben Pfaff (b...@nicira.com) wrote:
> 
> On Thu, Dec 05, 2013 at 07:05:29PM -0800, Jayanth Silesh wrote:
> > I am trying to add nw_proto with nicira extensions from pox.
> > I have been really struggling with this.
> > I want to add, nw_proto field on a table which is not the default one.
> >
> > Eg: table_id=2 , dl_type =0x0800 , nw_proto=6
> >
> > The only way is to go about nicira extensions since thats the only way
> > we can install flows for different tables.
> 
> What message are you sending? Provide a hex dump.
_______________________________________________
discuss mailing list
discuss@openvswitch.org
http://openvswitch.org/mailman/listinfo/discuss

Reply via email to