RYU 如何扔掉一个符合要求的数据包

Posted WenYao.Huang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RYU 如何扔掉一个符合要求的数据包相关的知识,希望对你有一定的参考价值。

又遇到一个问题,使用OFPMatch匹配的某个数据包,但是怎么Drop掉?又不会了,翻到了下面的代码

参考网址:http://stackoverflow.com/questions/41023354/ryu-controller-drop-packet

def dropEthType(self,
                match_eth_type = 0x0800):
    parser = self.parser
    proto = self.proto
    match = parser.OFPMatch(eth_type = match_eth_type)
    instruction = [
        parser.OFPInstructionActions(proto.OFPIT_CLEAR_ACTIONS, [])
        ]
    msg = parser.OFPFlowMod(self.datapath,
                            table_id = OFDPA_FLOW_TABLE_ID_ACL_POLICY,
                            priority = 1,
                            command = proto.OFPFC_ADD,
                            match = match,
                            instructions = instruction
                            )
    self._log("dropEthType : %s" % str(msg))
    reply = api.send_msg(self.ryuapp, msg)
    if reply:
        raise Exception

 

以上是关于RYU 如何扔掉一个符合要求的数据包的主要内容,如果未能解决你的问题,请参考以下文章

使用 Ryu 控制器和 Python 制作自定义拓扑

JAVA正则表达式怎么匹配所有符合要求的子字符串

修改MySQL密码报错“ERROR 1819 (HY000): Your password does not satisfy the current policy requirements“(代码片段

ryu实例---基于跳数的最短路径转发

如何在导航抽屉中的两个片段之间传递数据

如何从片段中调用 getSupportFragmentManager()?