adjacentlink / emane

Distributed wireless network emulation framework
Other
127 stars 37 forks source link

Clarification on EMANE tables #231

Closed vivianchiong closed 1 year ago

vivianchiong commented 1 year ago

What is the difference between tables with the same name, like "BroadcastPacketAcceptTable0" in IEEE 802.11abg Model and the PHY layer model? I noticed they can give different results when using emanesh.

Also, what do the values of 0, 1, 2 3, tacked onto these tables mean like in "BroadcastPacketAcceptTable0"?

sgalgano commented 1 year ago

Drop and accept tables provide layer specific information such as traffic counts (bytes and packets) that have successfully traversed through the layer (accept tables) or counts broken out by reason for why traffic was dropped (drop tables). Drop reasons are different for each layer.

The index at the end of the table name corresponds to queue index.

vivianchiong commented 1 year ago

Makes sense, thank you so much!