首页 > 代码库 > RYU 如何扔掉一个符合要求的数据包
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 如何扔掉一个符合要求的数据包
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。