Communicating between multiple pox controllers

前端 未结 2 1009
感情败类
感情败类 2021-01-26 13:24

I am developing a load balancing between multiple controllers in sdn. Once a load is calculated on a controller-1 I need to migrate some part of that to controller-2. I have cre

相关标签:
2条回答
  • 2021-01-26 13:55

    POX is not a distributed controller. I would really recommend you to migrate immediately to ONOS or opendaylight. You would implement your solution on top of ONOS.

    0 讨论(0)
  • 2021-01-26 14:07

    In general you are after of a distributed SDN framework where controllers should communicate each other. In order for the controllers to be able to exchange information you should establish a communication channel between them. First decide over the type of communicatoin, inbound or outbound. Most distributed systems use outbound having the inbound communication channels as a failsafe solution. Choosing over the communication module is easy. You have several options but I will examine only 2 general ways of doing it. First one is the native messenger component of POX https://github.com/noxrepo/pox/blob/carp/pox/messenger/init.py Secondly and most widely used is the RabbitMQ message exchange broker system https://www.rabbitmq.com/tutorials/tutorial-one-python.html You should try to follow a Agent programming approach. Here is a paper to help you out http://jeremie.leguay.free.fr/files/disco_noms_2014.pdf. In the end if you will decide to go with Agents there is nice python library called SPADE https://pypi.python.org/pypi/SPADE but it becomes glitchy sometimes.

    0 讨论(0)
提交回复
热议问题