网络流量的哪些特征/统计数据唯一地标识了特定流?
我最初的想法是唯一标识符,例如从 eth_src 到 eth_dst 以及进出相同端口的所有数据包。
我一直在使用 Ryu Traffic Monitor 来尝试了解流量,它似乎使用了 in_port 和 eth_dst:
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)
拉莫斯之舞
相关分类