[ovs-dev] How and when are IP Addresses assigned to the switch interfaces.

2016-04-24 Thread Pynbiang Hadem
Hi, I'm still a learner of openvswitch and mininet. Pls help clarify my doubts. I am running a mininet instance with the following command:mininet@mininet-vm:  sudo mn --topo linear,3 --switch ovsk,datapath=user --controller remote When i run   mininet@mininet-vm:~$ sudo ovs-vsctl show    command, 

[ovs-dev] How and when are IP Addresses assigned to the switch interfaces

2016-04-22 Thread Pynbiang Hadem
Hi, I'm still a learner of openvswitch and mininet. Pls help clarify my doubts. I am running a mininet instance with the following command:mininet@mininet-vm:  sudo mn --topo linear,3 --switch ovsk,datapath=user --controller remote When i run   mininet@mininet-vm:~$ sudo ovs-vsctl show    command,

[ovs-dev] Is it possible to create and manage a custom table in openvswitch?

2016-04-15 Thread Pynbiang Hadem
Hi,I need to store some information in the switch which maybe tabular in nature consisting of 5 to 6 fields. The table will be populated dynamically during flow processing. Is it possible to create and manage such a custom table in openvswitch?. Pls suggest/advice. ThanksHadem __

[ovs-dev] Is it possible to create and manage a custom table in openvswitch?

2016-04-12 Thread Pynbiang Hadem
Hi,I need to store some information in the switch which maybe tabular in nature consisting of 5 to 6 fields. The table will be populated dynamically during flow processing. Is it possible to create and manage such a custom table in openvswitch?. Pls suggest/advice. ThanksHadem __

Re: [ovs-dev] How to set my own ttl value to mpls flows.

2016-02-09 Thread Pynbiang Hadem
lease help. i'm using openvswitch 2.4 RegardsHadem On Friday, 15 January 2016 11:25 AM, Ben Pfaff wrote: On Fri, Jan 15, 2016 at 05:41:24AM +, Pynbiang Hadem wrote: > ok so ovs does'nt support this operation by default. Is it possible to > modify ovs to incorporat

Re: [ovs-dev] How to set my own ttl value to mpls flows.

2016-01-14 Thread Pynbiang Hadem
Ben, ok so ovs does'nt support this operation by default. Is it possible to modify ovs to incorporate this operation?. Thanks RegardsHadem  On Thursday, 14 January 2016 10:50 PM, Ben Pfaff wrote: On Thu, Jan 14, 2016 at 01:00:05PM +0000, Pynbiang Hadem wrote: > > Hi,I

[ovs-dev] How to set my own ttl value to mpls flows.

2016-01-14 Thread Pynbiang Hadem
Hi,I want to add-flows  as shown below:sudo ovs-ofctl -O OpenFlow13 add-flow s1 "table=0,in_port=1,eth_type=0x800,actions=push_mpls:0x8847,set_field:100->mpls_label,set_field:5->mpls_tc,set_field:60->mpls_ttl,output:2" I want to set my own ttl values. However i get the following error message.  

[ovs-dev] How is the label value, TTL, mpls_tc and bos get inserted into the first mpls label in openvSwitch?

2016-01-06 Thread Pynbiang Hadem
How is the label value, TTL, mpls_tc and bos get inserted into the first mpls label in openvSwitch?. I had looked into the OpenvSwitch flow_push_mpls (in openvswitch/lib/flow.c) class function but could not find the appropriate coding for generating the above mpls label fields. Pls help, I need