Hello,

When I get a specific kind of packet I want to send that packet to a
specific dpid and port and also send it to the dpid and port that the packet
was intended for.

If I do:

# send packet to end host
# note self.PortMaping[dpid, mac_to_str(packet.dst)] returns the port number
the packet.dst is on

actions = [[openflow.OFPAT_OUTPUT, [0, self.PortMaping[dpid,
mac_to_str(packet.dst)]]]]
self.send_openflow(dpid, bufid, buf, actions, inport)

# send packet to specific dpid and port 11

actions = [[openflow.OFPAT_OUTPUT, [0, 11]]]
self.send_openflow(self.dpid_of_duplication, bufid, buf, actions, inport)

The packet never gets to the self.dpid_of_duplication port 11.

Anyone see where I'm going wrong here?

Thanks,

Aaron

-- 
Aaron O. Rosen
Masters Student - Network Communication
306B Fluor Daniel
843.425.9777
_______________________________________________
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org

Reply via email to