0

我想将以太网帧从 FPGA 发送到我的 PC 以供 Wireshark 接收

我将有效负载传递给 CRC 生成器以获取 CRC 结果,但我猜是 CRC 错误,因为wireshark 没有收到任何我的有效负载

我有 2 个想法

1. find a ethernet frame in hex code in internet and copy to VHDL to send in order to make sure no CRC error and check whether it send or not? could you post a correct ethernet frame in hex code here?

1b. any free CRC generator code in VHDL available in internet? and any free CRC generator code in C++ language or C# language or Java language for hard code CRC in ethernet frame?

2. use layer 2 programming in ubuntu to send a ethernet frame to another computer,
whether i can send and display the ethernet frame which i send in ubuntu or i need to capture with wireshark in another computer?
4

1 回答 1

0

使用您的 FPGA 工具创建以太网内核。这通常也会为您创建一个测试平台。运行该测试台,记下生成的数据的值。

作为另一种选择,我过去曾使用一些 Python 库来创建以太网数据包。

http://code.google.com/p/dpkt/source/browse/trunk/dpkt/ethernet.py

我从未使用过它,但它看起来可能会有所帮助:

http://packeth.sourceforge.net/packeth/Home.html

于 2013-04-12T10:08:50.537 回答