1

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

这是Ryu Rest QoS 教程的链接

iperf

本地主机:8080/qos/queue/0000000000000001

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

本地主机: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"
              }
            ]
          }
        ]
      }
    ]
  }
]
4

1 回答 1

0

在构建命令 topology delete --link tc,bw...

于 2018-04-22T08:44:40.690 回答