Thank you for the opportunity to be part of this group!
I am working on creating a wireless topology using user-space APs. To do so, I installed BOFUSS using the following command: install -3f.
As a simple test, I ran the following command:
sudo mn --wifi --ap user --innamespace --controller=remote,ip=127.0.0.1,port=6653
In the creation of the access point, I pass the argument inNamespace=True.
Below is a screenshot that describes what I have created with my custom script:
The issue is that in this setup, the ap1-eth0 interface, which I expected to be connected to the controller like in the previous screenshot, is no longer visible. While ping works fine, iperf does not.
I believe there are some settings I might be missing, but I'm not sure what they are.
I want to create a Mininet script that replicates the command: sudo mn --wifi --ap user --innamespace --controller=remote,ip=127.0.0.1,port=6653
Thank you very much.
Hello,
Did you notice any useful information when running the code at debug level?
--
You received this message because you are subscribed to the Google Groups "mininet-wifi-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mininet-wifi-dis...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mininet-wifi-discuss/62f37440-5f51-47fd-9194-743dd64c09d8n%40googlegroups.com.
The debug output provided some valuable insights. Specifically, I observed that a link was created between the access point and the controller by creating two interfaces: ap1-eth0 and c0-eth0, each with their IP addresses. The relevant lines from the output were:
However, when I run my custom Python Mininet script using cls=UserAP and inNamespace=True with net.addAccessPoint, the automatic creation of this link does not occur.
From what I understand, I may need to manually create the link between the AP and the controller (c0) within my script, and also manually assign the IP addresses. I am reaching out to confirm if this is indeed the correct approach, as I have not found detailed guidance on this matter. Additionally, is there any comprehensive documentation available for BOFUSS that could assist with these tasks?
Thank you
Thank you very much, Mr. Ramon. My goal is to implement and work with WPA2 and 802.11r handover. I understand that WPA2 has been designed primarily to work with user-space Access Points rather than kernel-based ones. For this reason, I am aiming to set up the configuration as described below
Thank you Mr. Ramon. While I have been able to perform pings using OVS with datapath=user, I am encountering issues with iperf not functioning between stations. This has led me to consider working with user-space Access Points as a potential solution