0

I want to send flow table entries asynchronously from POX controller to an OpenFlow switch without the switch initiating the conversation. Is it possible?

The use case here is that I'm simulating a firewall using the OpenFlow switch and want to dynamically block an IP and this message should come from the controller without the switch starting the conversation.

Daniel
  • 440
  • 4
  • 13

1 Answers1

0

During the ConnectionUp event, you can install any flow rules that you like for each switch as soon as it is connected to the controller. If you are asking arbitrary installing rules, then during the ConnectionUp event you can save the connection with the switch and later send the flow rules to the switch.

Daniel
  • 440
  • 4
  • 13