문제

In Openflow, we install rules with priorities. Now suppose we already have two rules installed at a switch, of priority 1 and 2. And now we want to add another rule, of some priority strictly between 1 and 2 (say 1.5). What is the usual way to handle this scenario.

도움이 되었습니까?

해결책

A standard practice used within networking and defining various rule lists (ACLs, etc) is to number them in increments of 10, so new rules can easily be injects between. The same could apply here.

Of course, with OpenFlow, it is trivial to completely replace all the rules. So you could simply just delete the existing ones and send out a new set of rules with the corrected priority values.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top