Iperf 流未分配给队列

Iperf flow is not assigned to queue

我是 ryu rest QoS 的新手。我正在尝试创建 QoS 队列并将带宽 link 分配给两个 iperf 流。
第一流最大速率为 300Kbps。
第二个流最小速率为 700Kbps。
Link 带宽为 1Mbps。
问题是两个流量都使用了大约一半 link=500Kbs。

这里是link到Ryu Rest QoS tutorial

localhost:8080/qos/queue/0000000000000001

[
   {
    "switch_id": "0000000000000001",
    "command_result": {
      "result": "success",
      "details": {
        "s1-eth1": {
          "0": {
            "config": {
              "max-rate": "300000"
            }
          },
          "1": {
            "config": {
              "min-rate": "700000"
            }
          }
        }
      }
    }
  }
]

localhost:8080/qos/rules/0000000000000001

[
  {
    "switch_id": "0000000000000001",
    "command_result": [
      {
        "qos": [
          {
            "priority": 1,
            "dl_type": "IPv4",
            "nw_proto": "UDP",
            "tp_dst": 5002,
            "qos_id": 1,
            "nw_dst": "10.0.0.1",
            "actions": [
              {
                "queue": "1"
              }
            ]
          },
          {
            "priority": 1,
            "dl_type": "IPv4",
            "nw_proto": "UDP",
            "tp_dst": 5001,
            "qos_id": 2,
            "nw_dst": "10.0.0.1",
            "actions": [
              {
                "queue": "0"
              }
            ]
          }
        ]
      }
    ]
  }
]

在构建命令拓扑中删除--link tc,bw...