Hi Ramon,
I created an AccessPoint with two wlans.
Now, I want to connect a two stations to the first wlan and two other stations to the second wlan.
I tried net.addLink(sta1, ap1, intf="ap1-wlan1")
But it connects to the first wlan always.
I think this behavior is caused by the call to infra_wmediumd_link(node1, node2, **params) in net.py:678 always ignore port1 and port2.
Then in get_intf function in net.py:585, it always assigns wlan1 and wlan2 to 0.
Conclusion:
How can I connect to a wlan other than the first one in and AP?
Best