FD.io/VPP — QoS
Posted 范桂飓
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FD.io/VPP — QoS相关的知识,希望对你有一定的参考价值。
目录
QoS
# 配置限速规则。
configure policer name policy1 cir 800 cb 90000 rate kbps round closest type 1r2c conform-action transmit exceed-action drop
# 创建 classify table,确定匹配数据包的哪些字段。
classify table mask l3 ip6 dst
# 创建 classify session,匹配具体字段的值,e.g. ip、vlan 等。
classify session policer-hit-next policy1 exceed-color table-index 0 match l3 ip6 dst 2008:db8:0:2::1
# 在接口上使能 QoS。上面的 table-index 0,ip6-table 0 都是执行 classify table mask l3 ip6 dst 返回的 id。
set policer classify interface host-vetha_1 ip6-table 0
以上是关于FD.io/VPP — QoS的主要内容,如果未能解决你的问题,请参考以下文章
FD.io/VPP — VPP Agent — Overview
FD.io/VPP — VPP Agent — Quickstart