Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有带有 STM32F207 MCU 的 STM3220G-Eval 板。我已经加载了基于 UDP Echo Server lwIP 的示例应用程序(来自 CubeMX 存档)。这个应用程序使用了 #7 端口。我尝试在客户端模式(Windows 操作系统)下使用 iperf3,但它无法与板一起使用(尽管Echotool成功地作为客户端工作)。iperf3 可以与自定义 UDP 回显服务器一起使用吗?
简短的回答:不是。iperf3 客户端和服务器需要通过在测试开始之前设置的控制通道相互通信。这允许他们交换测试参数、结束条件等。如果你想在你的嵌入式系统上创建一个 iperf3 服务器,它需要使用 iperf3 客户端使用的(没有很好记录的)控制协议。
iperf 版本 2 不使用控制通道;如果您需要做的只是将 UDP 数据包发送到您的电路板,它可能适用于您的应用程序。
布鲁斯。