intrig-unicamp / mininet-wifi

Emulator for Software-Defined Wireless Networks
https://mn-wifi.readthedocs.io/
Other
432 stars 239 forks source link

wmediumdConnector.py signal table selection #367

Closed onurklngc closed 3 years ago

onurklngc commented 3 years ago

Hi Dr.Ramon,

From this method, the following command is called: ['wmediumd', '-l', '0', '-s', '-c', '/tmp/mn_wmd_config_AwWFSv.cfg', '-x', '/usr/local/lib/python2.7/dist-packages/mininet_wifi-2.5-py2.7.egg/mn_wifi/data/signal_table_ieee80211']

When I check wmediumd log file, only the next line is logged: _Input packet error rate file: /usr/local/lib/python2.7/dist-packages/mininet_wifi-2.5-py2.7.egg/mn_wifi/data/signal_tableieee80211

In mn_wifi/data/ path there are files with 'signal_table_ieee80211' prefix. I duplicated one of the these files with 'signal_table_ieee80211' name, but it still prints the same error log. I was trying to figure out which one is used in wmediumd.

Best regards, Onur

ramonfontes commented 3 years ago

signal_table_ieee80211ax is the default one: https://github.com/ramonfontes/wmediumd/blob/mininet-wifi/wmediumd/per.c#L315

onurklngc commented 3 years ago

Thank you!