OpenFlow规则元数据 [英] OpenFlow Rule Metadata

查看:204
本文介绍了OpenFlow规则元数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想了解如何在开放流规则中计算元数据.

I would like to understand how the Metadata are calculated in an Open Flow rule.

cookie = 0x6900000,持续时间= 228925.519s,table = 17,n_packets = 384,n_bytes = 35436,优先级= 10,元数据= 0xf30000000000/0xffffff0000000000 actions = write_metadata:0xc000f30000000000/0xffffffffffffffffe,goto_table:211

cookie=0x6900000, duration=228925.519s, table=17, n_packets=384, n_bytes=35436, priority=10,metadata=0xf30000000000/0xffffff0000000000 actions=write_metadata:0xc000f30000000000/0xfffffffffffffffe,goto_table:211

示例:我的流程与此非常相似. 如何精确计算元数据.

Example: I have a flow very similar to this. How are exactly the Metadata are Calculated.

以及如何解释元数据值和掩码

And how to Intrepret the Metadata Values and Mask

有人说 new_metadata = old_metadata& 〜遮罩|价值和面具

Some says new_metadata = old_metadata & ~mask | value & Mask

老实说我听不懂,有人可以解释一下

Honestly i do not understand it, could some one explain it

推荐答案

前面的解释确实等同于:

The preceding explanation is indeed equivalent to:

new_metadata = (old_metadata & ~mask) | (value & mask)

换句话说,我们首先擦除掩码(old_metadata & ~mask)中设置为1的旧元数据值的位,然后将掩码中也设置为1的值的位设置为1(| (value & mask) ).

In other words, we first erase bits of the old metadata value set to 1 in the mask (old_metadata & ~mask) and then set to 1 the bits of the value that are also set to 1 in the mask (| (value & mask)).

这篇关于OpenFlow规则元数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆