How to create Ethernet II frame header in Linux ? 802.3 frame header can be created using eth_header() giving the skbuffer and source and destination MAC and length. Can the same function be used for Ethernet II frame format also, where we use type field instead of length?
|
| ||||
|
feedback
|
|
The (current) kernel sources define the method in question the following way:
So we do have a Let's look at the method's implementation, whether and how the value of
As we can see, for all types but 802.2/3 the value of Conclusion and answer to the question: Yes, one can use | |||||||
feedback
|
|
Cf.
You can change the amount of bytes allocated and/or pushed depending on what you want to add to the packet. | |||
|
feedback
|