Hi, I am trying to create a set of rules that will duplicate a packet. So, when a packet is sent from srcA destined for dstX, a copy is also sent to monitorH.
I tried to just add a new ofp_packet_out message to the duplicator that set the nw_dst address to monitorH, but I get an error that the buffer_id has already been used. If I set the buffer_id to None, the packet arrives at dstX, but not at monitorH. If I leave the buffer untouched, and drop the packet from dstX, so it only goes to monitorH, nothing happens. Viewing output in tshark, show no packets going to host monitorH. Is this the correct approach, or should I try something different? Thanks Brian