adjacentlink / emane

Distributed wireless network emulation framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Clarification on EMANE tables

vivianchiong opened this issue · comments

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"?

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.

Makes sense, thank you so much!