Re: [OpenDaylight Discuss] Multiple Controller implementation

2018-02-07 Thread Jamo Luhrsen
Ok Mohamed, I see what you are trying to do. I think it should be possible to build your own version of OpenDaylight that uses different ports to listen for openflow, and maybe not too difficult. but there are other ports being used in other places of OpenDaylight that you would have to change

Re: [OpenDaylight Discuss] Multiple Controller implementation

2018-02-07 Thread Mohamed Abdel Metaal
Thanks Luis. This answers my question so far as I thought I could modify the ports in a multiple of configuration files in order to achieve this. Probably this could be a future idea to implement in OpenDaylight that allows a single machine to operate multiple controllers simultaneously 

Re: [OpenDaylight Discuss] Multiple Controller implementation

2018-02-07 Thread Mohamed Abdel Metaal
Luis and Jamo, Attached is defining the controller part of my mininet script. If you would like to full script please let me know: c1 = RemoteController( 'c1', ip='127.0.0.1', port=6653 ) c2 = RemoteController( 'c2', ip='127.0.0.1', port=7753 ) c3 = RemoteController( 'c3', ip='127.0.0.1',

Re: [OpenDaylight Discuss] Multiple Controller implementation

2018-02-07 Thread Luis Gomez
> On Feb 7, 2018, at 5:11 PM, Mohamed Abdel Metaal > wrote: > > Luis, > > This could not be possible as all controllers in this case will connect to > the same openflow ports, RESTCONF, Jolokia ports 8081 and 8080 along with > other ports too, so the other 2

Re: [OpenDaylight Discuss] Multiple Controller implementation

2018-02-07 Thread Mohamed Abdel Metaal
Luis, This could not be possible as all controllers in this case will connect to the same openflow ports, RESTCONF, Jolokia ports 8081 and 8080 along with other ports too, so the other 2 controllers will address ports which is already being addressed by the first controller. It would only be

Re: [OpenDaylight Discuss] Multiple Controller implementation

2018-02-07 Thread Jamo Luhrsen
On 2/7/18 4:24 PM, Luis Gomez wrote: > >> On Feb 7, 2018, at 4:09 PM, Mohamed Abdel Metaal > > wrote: >> >> Hello Jamo, >> >> Yes exactly, I have one instance of mininet running that should be connected >> to 3 opendaylight controllers. In

Re: [OpenDaylight Discuss] Multiple Controller implementation

2018-02-07 Thread Luis Gomez
> On Feb 7, 2018, at 4:09 PM, Mohamed Abdel Metaal > wrote: > > Hello Jamo, > > Yes exactly, I have one instance of mininet running that should be connected > to 3 opendaylight controllers. In my mininet python script i have defined > that controllers should connect

Re: [OpenDaylight Discuss] Multiple Controller implementation

2018-02-07 Thread Mohamed Abdel Metaal
Hello Jamo, Yes exactly, I have one instance of mininet running that should be connected to 3 opendaylight controllers. In my mininet python script i have defined that controllers should connect on 6653, 7753 and 8853 openflow ports. This should be somehow configured also in my opendaylight

Re: [OpenDaylight Discuss] Multiple Controller implementation

2018-02-07 Thread Jamo Luhrsen
adding the openflowplugin-dev list here as well. Mohamed, I don't get the impression that your OpenDaylight controllers are in a clustering setup. Is that correct? I'm not totally following what you are trying to accomplish. You have just one mininet instance connecting to a single IP address,

[OpenDaylight Discuss] LFN Developer Forum Session Talks Proposals

2018-02-07 Thread Abhijit Kumbhare
Hi ODL contributors, Please don't forget to submit any cross community talks you may have for the LFN developer forum [0] at the ONS. The wiki to submit your proposals is at [1]. It will be good to have strong ODL representation in the developer forum. Thanks, Abhijit [0] LFN Developer Forum:

[OpenDaylight Discuss] Multiple Controller implementation

2018-02-07 Thread Mohamed Abdel Metaal
I have a question regarding the implementation of multiple controllers using OpenDaylight. If I want to implement 3 controllers, each responsible for a certain number of nodes in the topology (so we have 3 domains) which are not overlapping, how can this be implemented? I have experience with

[OpenDaylight Discuss] Subscription to "Discuss" mailing list

2018-02-07 Thread Mohamed Abdel Metaal
Email: m.alaa...@hotmail.com ___ Discuss mailing list Discuss@lists.opendaylight.org https://lists.opendaylight.org/mailman/listinfo/discuss

Re: [OpenDaylight Discuss] Multiple flow actions

2018-02-07 Thread Jamo Luhrsen
Jacob, I'm adding the openflowplugin-dev and l2switch-dev lists here as those are probably the people that will know this topic the best. Thanks, JamO On 02/07/2018 05:28 AM, Jacob Steadman wrote: > Hi, > >   > > I’m writing a traffic monitoring application, and want certain flows to be >

[OpenDaylight Discuss] Multiple flow actions

2018-02-07 Thread Jacob Steadman
Hi, I'm writing a traffic monitoring application, and want certain flows to be sent to the controller while still being forwarded to their intended destination. However the flows are only going to the controller. The code I'm using I have edited from the InitialFlowWriter class in the