当前位置: 首页>>代码示例>>Java>>正文


Java OFPacketOut.setInPort方法代码示例

本文整理汇总了Java中org.openflow.protocol.OFPacketOut.setInPort方法的典型用法代码示例。如果您正苦于以下问题:Java OFPacketOut.setInPort方法的具体用法?Java OFPacketOut.setInPort怎么用?Java OFPacketOut.setInPort使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.openflow.protocol.OFPacketOut的用法示例。


在下文中一共展示了OFPacketOut.setInPort方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createPacketOut

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
private OFPacketOut createPacketOut() {
	//["packet", {"outport": 1, "protocol": 2, "header_len": 14, "inport": 2, 
	// "dstip": [49, 48, 46, 48, 46, 48, 46, 49], 
	// "srcmac": [99, 101, 58, 97, 56, 58, 100, 100, 58, 99, 102, 58, 49, 99, 58, 97, 101], "dstmac": [99, 101, 58, 97, 54, 58, 99, 51, 58, 100, 100, 58, 56, 57, 58, 99, 51], 
	// "raw": [206, 166, 195, 221, 137, 195, 206, 168, 221, 207, 28, 174, 8, 6, 0, 1, 8, 0, 6, 4, 0, 2, 206, 168, 221, 207, 28, 174, 10, 0, 0, 2, 206, 166, 195, 221, 137, 195, 10, 0, 0, 1], 
	// "payload_len": 42, "switch": 1, "ethtype": 2054, "srcip": [49, 48, 46, 48, 46, 48, 46, 50] }] + TERM_CHAR

	OFPacketOut packetOut = new OFPacketOut();
	packetOut.setBufferId(10);
	packetOut.setInPort((short)2);
	packetOut.setPacketData(new byte[] {28, 8, 6, 0, 1, 8, 0, 6, 4, 0, 2, 28, 10, 0, 0, 2, 10, 0, 0, 1});
	
	BasicFactory factory = new BasicFactory();
	packetOut.setActionFactory(factory.getActionFactory());
	List<OFAction> actions = new ArrayList<OFAction>();
	OFAction action = new OFActionOutput((short)3);
	actions.add(action);
	packetOut.setActions(actions);
	
	return packetOut;
}
 
开发者ID:fp7-netide,项目名称:Engine,代码行数:22,代码来源:TestOFMessageParsing.java

示例2: clonePacketOut

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
private OFPacketOut clonePacketOut(OFPacketOut packet){
	OFPacketOut newOut = new OFPacketOut();
	newOut.setActions(packet.getActions());
	newOut.setPacketData(packet.getPacketData().clone());
	newOut.setBufferId(packet.getBufferId());
	newOut.setInPort(packet.getInPort());
	newOut.setLength(packet.getLength());
	newOut.setType(packet.getType());
	newOut.setXid(packet.getXid());
	return newOut;
}
 
开发者ID:GlobalNOC,项目名称:FlowSpaceFirewall,代码行数:12,代码来源:VLANSlicer.java

示例3: doFlood

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
/**
 * Creates a OFPacketOut with the OFPacketIn data that is flooded on all ports unless
 * the port is blocked, in which case the packet will be dropped.
 * @param sw The switch that receives the OFPacketIn
 * @param pi The OFPacketIn that came to the switch
 * @param cntx The FloodlightContext associated with this OFPacketIn
 */
@LogMessageDoc(level="ERROR",
               message="Failure writing PacketOut " +
               		"switch={switch} packet-in={packet-in} " +
               		"packet-out={packet-out}",
               explanation="An I/O error occured while writing a packet " +
               		"out message to the switch",
               recommendation=LogMessageDoc.CHECK_SWITCH)
protected void doFlood(IOFSwitch sw, OFPacketIn pi, FloodlightContext cntx) {
    if (topology.isIncomingBroadcastAllowed(sw.getId(),
                                            pi.getInPort()) == false) {
        if (log.isTraceEnabled()) {
            log.trace("doFlood, drop broadcast packet, pi={}, " +
                      "from a blocked port, srcSwitch=[{},{}], linkInfo={}",
                      new Object[] {pi, sw.getId(),pi.getInPort()});
        }
        return;
    }

    // Set Action to flood
    OFPacketOut po =
        (OFPacketOut) floodlightProvider.getOFMessageFactory().getMessage(OFType.PACKET_OUT);
    List<OFAction> actions = new ArrayList<OFAction>();
    if (sw.hasAttribute(IOFSwitch.PROP_SUPPORTS_OFPP_FLOOD)) {
        actions.add(new OFActionOutput(OFPort.OFPP_FLOOD.getValue(),
                                       (short)0xFFFF));
    } else {
        actions.add(new OFActionOutput(OFPort.OFPP_ALL.getValue(),
                                       (short)0xFFFF));
    }
    po.setActions(actions);
    po.setActionsLength((short) OFActionOutput.MINIMUM_LENGTH);

    // set buffer-id, in-port and packet-data based on packet-in
    short poLength = (short)(po.getActionsLength() + OFPacketOut.MINIMUM_LENGTH);
    po.setBufferId(OFPacketOut.BUFFER_ID_NONE);
    po.setInPort(pi.getInPort());
    byte[] packetData = pi.getPacketData();
    poLength += packetData.length;
    po.setPacketData(packetData);
    po.setLength(poLength);

    try {
        if (log.isTraceEnabled()) {
            log.trace("Writing flood PacketOut switch={} packet-in={} packet-out={}",
                      new Object[] {sw, pi, po});
        }
        messageDamper.write(sw, po, cntx);
    } catch (IOException e) {
        log.error("Failure writing PacketOut switch={} packet-in={} packet-out={}",
                new Object[] {sw, pi, po}, e);
    }

    return;
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:62,代码来源:Forwarding.java

示例4: packetOutMultiPort

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
/**
 * Write packetout message to sw with output actions to one or more
 * output ports with inPort/outPorts passed in.
 * @param packetData
 * @param sw
 * @param inPort
 * @param ports
 * @param cntx
 */
public void packetOutMultiPort(byte[] packetData,
                               IOFSwitch sw,
                               short inPort,
                               Set<Integer> outPorts,
                               FloodlightContext cntx) {
    //setting actions
    List<OFAction> actions = new ArrayList<OFAction>();

    Iterator<Integer> j = outPorts.iterator();

    while (j.hasNext())
    {
        actions.add(new OFActionOutput(j.next().shortValue(),
                                       (short) 0));
    }

    OFPacketOut po =
            (OFPacketOut) floodlightProvider.getOFMessageFactory().
            getMessage(OFType.PACKET_OUT);
    po.setActions(actions);
    po.setActionsLength((short) (OFActionOutput.MINIMUM_LENGTH *
            outPorts.size()));

    // set buffer-id to BUFFER_ID_NONE, and set in-port to OFPP_NONE
    po.setBufferId(OFPacketOut.BUFFER_ID_NONE);
    po.setInPort(inPort);

    // data (note buffer_id is always BUFFER_ID_NONE) and length
    short poLength = (short)(po.getActionsLength() +
            OFPacketOut.MINIMUM_LENGTH);
    poLength += packetData.length;
    po.setPacketData(packetData);
    po.setLength(poLength);

    try {
        counterStore.updatePktOutFMCounterStoreLocal(sw, po);
        if (log.isTraceEnabled()) {
            log.trace("write broadcast packet on switch-id={} " +
                    "interfaces={} packet-out={}",
                    new Object[] {sw.getId(), outPorts, po});
        }
        messageDamper.write(sw, po, cntx);

    } catch (IOException e) {
        log.error("Failure writing packet out", e);
    }
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:57,代码来源:ForwardingBase.java

示例5: pushPacket

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
/**
 * Pushes a packet-out to a switch.  The assumption here is that
 * the packet-in was also generated from the same switch.  Thus, if the input
 * port of the packet-in and the outport are the same, the function will not
 * push the packet-out.
 * @param sw        switch that generated the packet-in, and from which packet-out is sent
 * @param match     OFmatch
 * @param pi        packet-in
 * @param outport   output port
 */
private void pushPacket(IOFSwitch sw, OFMatch match, OFPacketIn pi, short outport) {
    if (pi == null) {
        return;
    }

    // The assumption here is (sw) is the switch that generated the
    // packet-in. If the input port is the same as output port, then
    // the packet-out should be ignored.
    if (pi.getInPort() == outport) {
        if (log.isDebugEnabled()) {
            log.debug("Attempting to do packet-out to the same " +
                      "interface as packet-in. Dropping packet. " +
                      " SrcSwitch={}, match = {}, pi={}",
                      new Object[]{sw, match, pi});
            return;
        }
    }

    if (log.isTraceEnabled()) {
        log.trace("PacketOut srcSwitch={} match={} pi={}",
                  new Object[] {sw, match, pi});
    }

    OFPacketOut po =
            (OFPacketOut) floodlightProvider.getOFMessageFactory()
                                            .getMessage(OFType.PACKET_OUT);

    // set actions
    List<OFAction> actions = new ArrayList<OFAction>();
    actions.add(new OFActionOutput(outport, (short) 0xffff));

    po.setActions(actions)
      .setActionsLength((short) OFActionOutput.MINIMUM_LENGTH);
    short poLength =
            (short) (po.getActionsLength() + OFPacketOut.MINIMUM_LENGTH);

    // If the switch doens't support buffering set the buffer id to be none
    // otherwise it'll be the the buffer id of the PacketIn
    if (sw.getBuffers() == 0) {
        // We set the PI buffer id here so we don't have to check again below
        pi.setBufferId(OFPacketOut.BUFFER_ID_NONE);
        po.setBufferId(OFPacketOut.BUFFER_ID_NONE);
    } else {
        po.setBufferId(pi.getBufferId());
    }

    po.setInPort(pi.getInPort());

    // If the buffer id is none or the switch doesn's support buffering
    // we send the data with the packet out
    if (pi.getBufferId() == OFPacketOut.BUFFER_ID_NONE) {
        byte[] packetData = pi.getPacketData();
        poLength += packetData.length;
        po.setPacketData(packetData);
    }

    po.setLength(poLength);

    try {
        counterStore.updatePktOutFMCounterStoreLocal(sw, po);
        sw.write(po, null);
    } catch (IOException e) {
        log.error("Failure writing packet out", e);
    }
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:76,代码来源:LearningSwitch.java

示例6: writePacketOutForPacketIn

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
/**
 * Writes an OFPacketOut message to a switch.
 * @param sw The switch to write the PacketOut to.
 * @param packetInMessage The corresponding PacketIn.
 * @param egressPort The switchport to output the PacketOut.
 */
private void writePacketOutForPacketIn(IOFSwitch sw,
                                      OFPacketIn packetInMessage,
                                      short egressPort) {
    // from openflow 1.0 spec - need to set these on a struct ofp_packet_out:
    // uint32_t buffer_id; /* ID assigned by datapath (-1 if none). */
    // uint16_t in_port; /* Packet's input port (OFPP_NONE if none). */
    // uint16_t actions_len; /* Size of action array in bytes. */
    // struct ofp_action_header actions[0]; /* Actions. */
    /* uint8_t data[0]; */ /* Packet data. The length is inferred
                              from the length field in the header.
                              (Only meaningful if buffer_id == -1.) */

    OFPacketOut packetOutMessage = (OFPacketOut) floodlightProvider.getOFMessageFactory().getMessage(OFType.PACKET_OUT);
    short packetOutLength = (short)OFPacketOut.MINIMUM_LENGTH; // starting length

    // Set buffer_id, in_port, actions_len
    packetOutMessage.setBufferId(packetInMessage.getBufferId());
    packetOutMessage.setInPort(packetInMessage.getInPort());
    packetOutMessage.setActionsLength((short)OFActionOutput.MINIMUM_LENGTH);
    packetOutLength += OFActionOutput.MINIMUM_LENGTH;

    // set actions
    List<OFAction> actions = new ArrayList<OFAction>(1);
    actions.add(new OFActionOutput(egressPort, (short) 0));
    packetOutMessage.setActions(actions);

    // set data - only if buffer_id == -1
    if (packetInMessage.getBufferId() == OFPacketOut.BUFFER_ID_NONE) {
        byte[] packetData = packetInMessage.getPacketData();
        packetOutMessage.setPacketData(packetData);
        packetOutLength += (short)packetData.length;
    }

    // finally, set the total length
    packetOutMessage.setLength(packetOutLength);

    // and write it out
    try {
        counterStore.updatePktOutFMCounterStoreLocal(sw, packetOutMessage);
        sw.write(packetOutMessage, null);
    } catch (IOException e) {
        log.error("Failed to write {} to switch {}: {}", new Object[]{ packetOutMessage, sw, e });
    }
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:51,代码来源:LearningSwitch.java

示例7: pushPacket

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
/**
 * used to push any packet - borrowed routine from Forwarding
 * 
 * @param OFPacketIn pi
 * @param IOFSwitch sw
 * @param int bufferId
 * @param short inPort
 * @param short outPort
 * @param FloodlightContext cntx
 * @param boolean flush
 */    
public void pushPacket(IPacket packet, 
                       IOFSwitch sw,
                       int bufferId,
                       short inPort,
                       short outPort, 
                       FloodlightContext cntx,
                       boolean flush) {
    if (log.isTraceEnabled()) {
        log.trace("PacketOut srcSwitch={} inPort={} outPort={}", 
                  new Object[] {sw, inPort, outPort});
    }

    OFPacketOut po =
            (OFPacketOut) floodlightProvider.getOFMessageFactory()
                                            .getMessage(OFType.PACKET_OUT);

    // set actions
    List<OFAction> actions = new ArrayList<OFAction>();
    actions.add(new OFActionOutput(outPort, (short) 0xffff));

    po.setActions(actions)
      .setActionsLength((short) OFActionOutput.MINIMUM_LENGTH);
    short poLength =
            (short) (po.getActionsLength() + OFPacketOut.MINIMUM_LENGTH);

    // set buffer_id, in_port
    po.setBufferId(bufferId);
    po.setInPort(inPort);

    // set data - only if buffer_id == -1
    if (po.getBufferId() == OFPacketOut.BUFFER_ID_NONE) {
        if (packet == null) {
            log.error("BufferId is not set and packet data is null. " +
                      "Cannot send packetOut. " +
                    "srcSwitch={} inPort={} outPort={}",
                    new Object[] {sw, inPort, outPort});
            return;
        }
        byte[] packetData = packet.serialize();
        poLength += packetData.length;
        po.setPacketData(packetData);
    }

    po.setLength(poLength);

    try {
        counterStore.updatePktOutFMCounterStoreLocal(sw, po);
        messageDamper.write(sw, po, cntx, flush);
    } catch (IOException e) {
        log.error("Failure writing packet out", e);
    }
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:64,代码来源:LoadBalancer.java

示例8: doMultiActionPacketOut

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
/**
 * TODO This method must be moved to a layer below forwarding
 * so that anyone can use it.
 * @param packetData
 * @param sw
 * @param ports
 * @param cntx
 */
@LogMessageDoc(level="ERROR",
        message="Failed to clear all flows on switch {switch}",
        explanation="An I/O error occured while trying send " +
        		"topology discovery packet",
        recommendation=LogMessageDoc.CHECK_SWITCH)
public void doMultiActionPacketOut(byte[] packetData, IOFSwitch sw,
                                   Set<Short> ports,
                                   FloodlightContext cntx) {

    if (ports == null) return;
    if (packetData == null || packetData.length <= 0) return;

    OFPacketOut po =
            (OFPacketOut) floodlightProvider.getOFMessageFactory().
            getMessage(OFType.PACKET_OUT);

    List<OFAction> actions = new ArrayList<OFAction>();
    for(short p: ports) {
        actions.add(new OFActionOutput(p, (short) 0));
    }

    // set actions
    po.setActions(actions);
    // set action length
    po.setActionsLength((short) (OFActionOutput.MINIMUM_LENGTH *
            ports.size()));
    // set buffer-id to BUFFER_ID_NONE
    po.setBufferId(OFPacketOut.BUFFER_ID_NONE);
    // set in-port to OFPP_NONE
    po.setInPort(OFPort.OFPP_NONE.getValue());

    // set packet data
    po.setPacketData(packetData);

    // compute and set packet length.
    short poLength = (short)(OFPacketOut.MINIMUM_LENGTH +
            po.getActionsLength() +
            packetData.length);

    po.setLength(poLength);

    try {
        //counterStore.updatePktOutFMCounterStore(sw, po);
        if (log.isTraceEnabled()) {
            log.trace("write broadcast packet on switch-id={} " +
                    "interaces={} packet-data={} packet-out={}",
                    new Object[] {sw.getId(), ports, packetData, po});
        }
        sw.write(po, cntx);

    } catch (IOException e) {
        log.error("Failure writing packet out", e);
    }
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:63,代码来源:TopologyManager.java

示例9: pushPacket

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
/**
 * Pushes a packet-out to a switch. If bufferId != BUFFER_ID_NONE we 
 * assume that the packetOut switch is the same as the packetIn switch
 * and we will use the bufferId 
 * Caller needs to make sure that inPort and outPort differs
 * @param packet    packet data to send
 * @param sw        switch from which packet-out is sent
 * @param bufferId  bufferId
 * @param inPort    input port
 * @param outPort   output port
 * @param cntx      context of the packet
 * @param flush     force to flush the packet.
 */
@LogMessageDocs({
    @LogMessageDoc(level="ERROR",
        message="BufferId is not and packet data is null. " +
                "Cannot send packetOut. " +
                "srcSwitch={dpid} inPort={port} outPort={port}",
        explanation="The switch send a malformed packet-in." +
                    "The packet will be dropped",
        recommendation=LogMessageDoc.REPORT_SWITCH_BUG),
    @LogMessageDoc(level="ERROR",
        message="Failure writing packet out",
        explanation="An I/O error occurred while writing a " +
                "packet out to a switch",
        recommendation=LogMessageDoc.CHECK_SWITCH)            
})
public void pushPacket(IPacket packet, 
                       IOFSwitch sw,
                       int bufferId,
                       short inPort,
                       short outPort, 
                       FloodlightContext cntx,
                       boolean flush) {
    
    
    if (log.isTraceEnabled()) {
        log.trace("PacketOut srcSwitch={} inPort={} outPort={}", 
                  new Object[] {sw, inPort, outPort});
    }

    OFPacketOut po =
            (OFPacketOut) floodlightProvider.getOFMessageFactory()
                                            .getMessage(OFType.PACKET_OUT);

    // set actions
    List<OFAction> actions = new ArrayList<OFAction>();
    actions.add(new OFActionOutput(outPort, (short) 0xffff));

    po.setActions(actions)
      .setActionsLength((short) OFActionOutput.MINIMUM_LENGTH);
    short poLength =
            (short) (po.getActionsLength() + OFPacketOut.MINIMUM_LENGTH);

    // set buffer_id, in_port
    po.setBufferId(bufferId);
    po.setInPort(inPort);

    // set data - only if buffer_id == -1
    if (po.getBufferId() == OFPacketOut.BUFFER_ID_NONE) {
        if (packet == null) {
            log.error("BufferId is not set and packet data is null. " +
                      "Cannot send packetOut. " +
                    "srcSwitch={} inPort={} outPort={}",
                    new Object[] {sw, inPort, outPort});
            return;
        }
        byte[] packetData = packet.serialize();
        poLength += packetData.length;
        po.setPacketData(packetData);
    }

    po.setLength(poLength);

    try {
        counterStore.updatePktOutFMCounterStore(sw, po);
        messageDamper.write(sw, po, cntx, flush);
    } catch (IOException e) {
        log.error("Failure writing packet out", e);
    }
}
 
开发者ID:vishalshubham,项目名称:Multipath-Hedera-system-in-Floodlight-controller,代码行数:82,代码来源:ForwardingBase.java

示例10: packetOutMultiPort

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
/**
 * Write packetout message to sw with output actions to one or more
 * output ports with inPort/outPorts passed in.
 * @param packetData
 * @param sw
 * @param inPort
 * @param ports
 * @param cntx
 */
public void packetOutMultiPort(byte[] packetData,
                               IOFSwitch sw,
                               short inPort,
                               Set<Integer> outPorts,
                               FloodlightContext cntx) {
    //setting actions
    List<OFAction> actions = new ArrayList<OFAction>();

    Iterator<Integer> j = outPorts.iterator();

    while (j.hasNext())
    {
        actions.add(new OFActionOutput(j.next().shortValue(), 
                                       (short) 0));
    }

    OFPacketOut po = 
            (OFPacketOut) floodlightProvider.getOFMessageFactory().
            getMessage(OFType.PACKET_OUT);
    po.setActions(actions);
    po.setActionsLength((short) (OFActionOutput.MINIMUM_LENGTH * 
            outPorts.size()));

    // set buffer-id to BUFFER_ID_NONE, and set in-port to OFPP_NONE
    po.setBufferId(OFPacketOut.BUFFER_ID_NONE);
    po.setInPort(inPort);

    // data (note buffer_id is always BUFFER_ID_NONE) and length
    short poLength = (short)(po.getActionsLength() + 
            OFPacketOut.MINIMUM_LENGTH);
    poLength += packetData.length;
    po.setPacketData(packetData);
    po.setLength(poLength);

    try {
        counterStore.updatePktOutFMCounterStore(sw, po);
        if (log.isTraceEnabled()) {
            log.trace("write broadcast packet on switch-id={} " + 
                    "interfaces={} packet-out={}",
                    new Object[] {sw.getId(), outPorts, po});
        }
        messageDamper.write(sw, po, cntx);

    } catch (IOException e) {
        log.error("Failure writing packet out", e);
    }
}
 
开发者ID:vishalshubham,项目名称:Multipath-Hedera-system-in-Floodlight-controller,代码行数:57,代码来源:ForwardingBase.java

示例11: writePacketOutForPacketIn

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
/**
 * Writes an OFPacketOut message to a switch.
 * @param sw The switch to write the PacketOut to.
 * @param packetInMessage The corresponding PacketIn.
 * @param egressPort The switchport to output the PacketOut.
 */
private void writePacketOutForPacketIn(IOFSwitch sw, 
                                      OFPacketIn packetInMessage, 
                                      short egressPort) {
    // from openflow 1.0 spec - need to set these on a struct ofp_packet_out:
    // uint32_t buffer_id; /* ID assigned by datapath (-1 if none). */
    // uint16_t in_port; /* Packet's input port (OFPP_NONE if none). */
    // uint16_t actions_len; /* Size of action array in bytes. */
    // struct ofp_action_header actions[0]; /* Actions. */
    /* uint8_t data[0]; */ /* Packet data. The length is inferred
                              from the length field in the header.
                              (Only meaningful if buffer_id == -1.) */
    
    OFPacketOut packetOutMessage = (OFPacketOut) floodlightProvider.getOFMessageFactory().getMessage(OFType.PACKET_OUT);
    short packetOutLength = (short)OFPacketOut.MINIMUM_LENGTH; // starting length

    // Set buffer_id, in_port, actions_len
    packetOutMessage.setBufferId(packetInMessage.getBufferId());
    packetOutMessage.setInPort(packetInMessage.getInPort());
    packetOutMessage.setActionsLength((short)OFActionOutput.MINIMUM_LENGTH);
    packetOutLength += OFActionOutput.MINIMUM_LENGTH;
    
    // set actions
    List<OFAction> actions = new ArrayList<OFAction>(1);      
    actions.add(new OFActionOutput(egressPort, (short) 0));
    packetOutMessage.setActions(actions);

    // set data - only if buffer_id == -1
    if (packetInMessage.getBufferId() == OFPacketOut.BUFFER_ID_NONE) {
        byte[] packetData = packetInMessage.getPacketData();
        packetOutMessage.setPacketData(packetData); 
        packetOutLength += (short)packetData.length;
    }
    
    // finally, set the total length
    packetOutMessage.setLength(packetOutLength);              
        
    // and write it out
    try {
    	counterStore.updatePktOutFMCounterStore(sw, packetOutMessage);
        sw.write(packetOutMessage, null);
    } catch (IOException e) {
        log.error("Failed to write {} to switch {}: {}", new Object[]{ packetOutMessage, sw, e });
    }
}
 
开发者ID:vishalshubham,项目名称:Multipath-Hedera-system-in-Floodlight-controller,代码行数:51,代码来源:LearningSwitch.java

示例12: doMultiActionPacketOut

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
/** 
 * TODO This method must be moved to a layer below forwarding
 * so that anyone can use it.
 * @param packetData
 * @param sw
 * @param ports
 * @param cntx
 */
@LogMessageDoc(level="ERROR",
        message="Failed to clear all flows on switch {switch}",
        explanation="An I/O error occured while trying send " +
        		"topology discovery packet",
        recommendation=LogMessageDoc.CHECK_SWITCH)
public void doMultiActionPacketOut(byte[] packetData, IOFSwitch sw, 
                                   Set<Short> ports,
                                   FloodlightContext cntx) {

    if (ports == null) return;
    if (packetData == null || packetData.length <= 0) return;

    OFPacketOut po = 
            (OFPacketOut) floodlightProvider.getOFMessageFactory().
            getMessage(OFType.PACKET_OUT);

    List<OFAction> actions = new ArrayList<OFAction>();
    for(short p: ports) {
        actions.add(new OFActionOutput(p, (short) 0));
    }

    // set actions
    po.setActions(actions);
    // set action length
    po.setActionsLength((short) (OFActionOutput.MINIMUM_LENGTH * 
            ports.size()));
    // set buffer-id to BUFFER_ID_NONE
    po.setBufferId(OFPacketOut.BUFFER_ID_NONE);
    // set in-port to OFPP_NONE
    po.setInPort(OFPort.OFPP_NONE.getValue());

    // set packet data
    po.setPacketData(packetData);

    // compute and set packet length.
    short poLength = (short)(OFPacketOut.MINIMUM_LENGTH + 
            po.getActionsLength() + 
            packetData.length);

    po.setLength(poLength);

    try {
        //counterStore.updatePktOutFMCounterStore(sw, po);
        if (log.isTraceEnabled()) {
            log.trace("write broadcast packet on switch-id={} " + 
                    "interaces={} packet-data={} packet-out={}",
                    new Object[] {sw.getId(), ports, packetData, po});
        }
        sw.write(po, cntx);

    } catch (IOException e) {
        log.error("Failure writing packet out", e);
    }
}
 
开发者ID:vishalshubham,项目名称:Multipath-Hedera-system-in-Floodlight-controller,代码行数:63,代码来源:TopologyManager.java

示例13: sendHostProbe

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
protected boolean sendHostProbe(InetAddress ip, MACAddress mac, long dpid, short port){
	byte[] data;
	
	//Currently, we use ICMPing to probe the host
	// data = generateARPPing(ip);
	data = generateICMPPing(ip, mac);
	
	IOFSwitch sw = floodlightProvider.getSwitch(dpid);
	
       if (sw == null) {
           return false;
       }
       ImmutablePort ofpPort = sw.getPort(port);

       if (ofpPort == null) {
           if (logger.isTraceEnabled()) {
               logger.trace("Null physical port. sw={}, port={}", sw, port);
           }
           return false;
       }

       OFPacketOut po = (OFPacketOut) floodlightProvider.getOFMessageFactory().getMessage(OFType.PACKET_OUT);
       po.setBufferId(OFPacketOut.BUFFER_ID_NONE);
       po.setInPort(OFPort.OFPP_NONE);

       // set actions
       List<OFAction> actions = new ArrayList<OFAction>();
       actions.add(new OFActionOutput(port, (short) 0));
       po.setActions(actions);
       po.setActionsLength((short) OFActionOutput.MINIMUM_LENGTH);

       // set data
       po.setLengthU(OFPacketOut.MINIMUM_LENGTH + po.getActionsLength() + data.length);
       po.setPacketData(data);

       // send
       try {
           sw.write(po, null);
           sw.flush();
       } catch (IOException e) {
           logger.error("Failure sending host probe out port {} on switch {}",
                     new Object[]{ port, sw.getStringId() }, e);
           return false;
       }
       return true;
       
}
 
开发者ID:xuraylei,项目名称:floodlight_with_topoguard,代码行数:48,代码来源:TopoloyUpdateChecker.java

示例14: pushPacket

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
private void pushPacket(IOFSwitch sw, OFMatch match, OFPacketIn pi, short outport, List<OFAction> actions, int actionLen)
{
    if (pi == null) {
        return;
    }

    // The assumption here is (sw) is the switch that generated the
    // packet-in. If the input port is the same as output port, then
    // the packet-out should be ignored.
    if (pi.getInPort() == outport) {
        if (logger.isDebugEnabled()) {
            logger.debug("Attempting to do packet-out to the same " +
                      "interface as packet-in. Dropping packet. " +
                      " SrcSwitch={}, match = {}, pi={}",
                      new Object[]{sw, match, pi});
            return;
        }
    }

    if (logger.isTraceEnabled()) {
        logger.trace("PacketOut srcSwitch={} match={} pi={}",
                  new Object[] {sw, match, pi});
    }

    OFPacketOut po =
            (OFPacketOut) floodlightProvider.getOFMessageFactory()
                                            .getMessage(OFType.PACKET_OUT);

    po.setActions(actions)
      .setActionsLength((short)actionLen);
    short poLength =
            (short) (po.getActionsLength() + OFPacketOut.MINIMUM_LENGTH);

    // If the switch doens't support buffering set the buffer id to be none
    // otherwise it'll be the the buffer id of the PacketIn
    if (sw.getBuffers() == 0) {
        // We set the PI buffer id here so we don't have to check again below
        pi.setBufferId(OFPacketOut.BUFFER_ID_NONE);
        po.setBufferId(OFPacketOut.BUFFER_ID_NONE);
    } else {
        po.setBufferId(pi.getBufferId());
    }

    po.setInPort(pi.getInPort());

    // If the buffer id is none or the switch doesn's support buffering
    // we send the data with the packet out
    if (pi.getBufferId() == OFPacketOut.BUFFER_ID_NONE) {
        byte[] packetData = pi.getPacketData();
        poLength += packetData.length;
        po.setPacketData(packetData);
    }

    po.setLength(poLength);

    try {
        counterStore.updatePktOutFMCounterStoreLocal(sw, po);
        sw.write(po, null);
        sw.flush();
    } catch (IOException e) {
        logger.error("Failure writing packet out", e);
    }
}
 
开发者ID:shao-you,项目名称:SDN-Traceroute,代码行数:64,代码来源:Traceroute.java

示例15: packetOutMultiPort

import org.openflow.protocol.OFPacketOut; //导入方法依赖的package包/类
/**
 * Write packetout message to sw with output actions to one or more
 * output ports with inPort/outPorts passed in.
 * @param packetData
 * @param sw
 * @param inPort
 * @param ports
 * @param cntx
 */
public void packetOutMultiPort(byte[] packetData,
                               IOFSwitch sw,
                               short inPort,
                               Set<Integer> outPorts,
                               ListenerContext cntx) {
    //setting actions
    List<OFAction> actions = new ArrayList<OFAction>();

    Iterator<Integer> j = outPorts.iterator();

    while (j.hasNext())
    {
        actions.add(new OFActionOutput(j.next().shortValue(), 
                                       (short) 0));
    }

    OFPacketOut po = 
            (OFPacketOut) controllerProvider.getOFMessageFactory().
            getMessage(OFType.PACKET_OUT);
    po.setActions(actions);
    po.setActionsLength((short) (OFActionOutput.MINIMUM_LENGTH * 
            outPorts.size()));

    // set buffer-id to BUFFER_ID_NONE, and set in-port to OFPP_NONE
    po.setBufferId(OFPacketOut.BUFFER_ID_NONE);
    po.setInPort(inPort);

    // data (note buffer_id is always BUFFER_ID_NONE) and length
    short poLength = (short)(po.getActionsLength() + 
            OFPacketOut.MINIMUM_LENGTH);
    poLength += packetData.length;
    po.setPacketData(packetData);
    po.setLength(poLength);

    try {
        counterStore.updatePktOutFMCounterStoreLocal(sw, po);
        if (log.isTraceEnabled()) {
            log.trace("write broadcast packet on switch-id={} " + 
                    "interfaces={} packet-out={}",
                    new Object[] {sw.getId(), outPorts, po});
        }
        messageDamper.write(sw, po, cntx);

    } catch (IOException e) {
        log.error("Failure writing packet out", e);
    }
}
 
开发者ID:opendaylight,项目名称:archived-net-virt-platform,代码行数:57,代码来源:ForwardingBase.java


注:本文中的org.openflow.protocol.OFPacketOut.setInPort方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。