I want to create a flow Tee in a switch to send packets to an IDS.
That is, I want the following effects:
- When packet comes into the switch match on source MAC.
- If MAC matches make two copies of the packet:
- For one of the copies, rewrite the target IP address and goto table 2.
- For another copy Just goto table 2 without rewriting anything.
What is the best way to achieve this using OpenFlow?
Can a single instruction have multiple goto targets so the packet and a copy of it gets sent to two different tables?
Ranga.