| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | from operator import attrgetter |
| |
|
| | from ryu.app import simple_switch_13 |
| | from ryu.controller import ofp_event |
| | from ryu.controller.handler import MAIN_DISPATCHER, DEAD_DISPATCHER |
| | from ryu.controller.handler import set_ev_cls |
| | from ryu.lib import hub |
| |
|
| |
|
| | class SimpleMonitor13(simple_switch_13.SimpleSwitch13): |
| |
|
| | def __init__(self, *args, **kwargs): |
| | super(SimpleMonitor13, self).__init__(*args, **kwargs) |
| | self.datapaths = {} |
| | self.monitor_thread = hub.spawn(self._monitor) |
| |
|
| | @set_ev_cls(ofp_event.EventOFPStateChange, |
| | [MAIN_DISPATCHER, DEAD_DISPATCHER]) |
| | def _state_change_handler(self, ev): |
| | datapath = ev.datapath |
| | if ev.state == MAIN_DISPATCHER: |
| | if datapath.id not in self.datapaths: |
| | self.logger.debug('register datapath: %016x', datapath.id) |
| | self.datapaths[datapath.id] = datapath |
| | elif ev.state == DEAD_DISPATCHER: |
| | if datapath.id in self.datapaths: |
| | self.logger.debug('unregister datapath: %016x', datapath.id) |
| | del self.datapaths[datapath.id] |
| |
|
| | def _monitor(self): |
| | while True: |
| | for dp in self.datapaths.values(): |
| | self._request_stats(dp) |
| | hub.sleep(5) |
| |
|
| | def _request_stats(self, datapath): |
| | self.logger.debug('send stats request: %016x', datapath.id) |
| | ofproto = datapath.ofproto |
| | parser = datapath.ofproto_parser |
| |
|
| | req = parser.OFPFlowStatsRequest(datapath) |
| | datapath.send_msg(req) |
| |
|
| | req = parser.OFPPortStatsRequest(datapath, 0, ofproto.OFPP_ANY) |
| | datapath.send_msg(req) |
| |
|
| | @set_ev_cls(ofp_event.EventOFPFlowStatsReply, MAIN_DISPATCHER) |
| | def _flow_stats_reply_handler(self, ev): |
| | body = ev.msg.body |
| |
|
| | self.logger.info('datapath ' |
| | 'in-port eth-dst ' |
| | 'out-port packets bytes') |
| | self.logger.info('---------------- ' |
| | '-------- ----------------- ' |
| | '-------- -------- --------') |
| | for stat in sorted([flow for flow in body if flow.priority == 1], |
| | key=lambda flow: (flow.match['in_port'], |
| | flow.match['eth_dst'])): |
| | self.logger.info('%016x %8x %17s %8x %8d %8d', |
| | ev.msg.datapath.id, |
| | stat.match['in_port'], stat.match['eth_dst'], |
| | stat.instructions[0].actions[0].port, |
| | stat.packet_count, stat.byte_count) |
| |
|
| | if(stat.packet_count > 10): |
| | print("DEL_S") |
| | ofp = ev.msg.datapath.ofproto |
| | ofp_parser = ev.msg.datapath.ofproto_parser |
| | match=ofp_parser.OFPMatch(in_port=stat.match['in_port'],eth_dst=stat.match['eth_dst']) |
| | dpidT = format(ev.msg.datapath.id, "d").zfill(16) |
| | actions = [ofp_parser.OFPActionOutput(ofp.OFPP_NORMAL, 0)] |
| | inst = [ofp_parser.OFPInstructionActions(ofp.OFPIT_APPLY_ACTIONS, actions)] |
| | req = ofp_parser.OFPFlowMod(ev.msg.datapath, 0, 0, 0, ofp.OFPFC_DELETE, 0, 0, 32768, ofp.OFP_NO_BUFFER, ofp.OFPP_ANY, ofp.OFPG_ANY, ofp.OFPFF_SEND_FLOW_REM, match, inst) |
| |
|
| | ev.msg.datapath.send_msg(req) |
| | self.DEL[stat.match['in_port']] = stat.match['eth_dst'] |
| | print("DEL_E") |
| | |
| | |
| |
|
| | @set_ev_cls(ofp_event.EventOFPPortStatsReply, MAIN_DISPATCHER) |
| | def _port_stats_reply_handler(self, ev): |
| | body = ev.msg.body |
| |
|
| | """self.logger.info('datapath port ' |
| | 'rx-pkts rx-bytes rx-error ' |
| | 'tx-pkts tx-bytes tx-error') |
| | self.logger.info('---------------- -------- ' |
| | '-------- -------- -------- ' |
| | '-------- -------- --------') |
| | for stat in sorted(body, key=attrgetter('port_no')): |
| | self.logger.info('%016x %8x %8d %8d %8d %8d %8d %8d', |
| | ev.msg.datapath.id, stat.port_no, |
| | stat.rx_packets, stat.rx_bytes, stat.rx_errors, |
| | stat.tx_packets, stat.tx_bytes, stat.tx_errors)""" |
| |
|
| |
|
| | |
| | self.logger.info('----------------------------------------') |
| | self.logger.info('SW id:%x\n', ev.msg.datapath.id) |
| |
|
| | |
| | for stat in sorted(body, key=attrgetter('port_no')): |
| | self.logger.info('port: %2x\ntx-pkts: %2d\nrx-pkts: %2d\n', |
| | stat.port_no, stat.tx_packets, stat.rx_packets) |
| |
|
| | self.logger.info('Adress Port') |
| | |
| |
|
| | for p, i in enumerate(self.mac_to_port[format(ev.msg.datapath.id, "d").zfill(16)]): |
| | self.logger.info('%s %d', i, p) |
| |
|
| |
|
| |
|