WLAN nodes with multiple interfaces?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Deshantha
el 26 de Dic. de 2022
Comentada: William Paredes
el 8 de Feb. de 2023
I want to create a WLAN node which is having two radio interfaces, one for 2.4Ghz and the other for 5Ghz. I am using the WLAN toolbox and wlanNodeConfig.mat to configure the node. Can anyone help?
0 comentarios
Respuesta aceptada
William Paredes
el 7 de Feb. de 2023
Editada: William Paredes
el 7 de Feb. de 2023
If you are using the hLoadConfiguration helper function, you can use the following line afterwards:
nodeConfigs(nodeIdx).BandAndChannel = {[Band1, Channel1] [Band2, Channel2] [Bandn, Channeln]};
where nodeIdx is the node identifier and each interface is defined by a [Band, Channel] vector. You can select the bands and channels according to your needs.
You can also modify the BandAndCHannel field in the wlanNodeConfig.mat file to turn it into a 1xn cell array, where each cell contains the corresponding [Band, Channel] vector.
2 comentarios
William Paredes
el 8 de Feb. de 2023
You are welcome @Deshantha! Maybe have you tried configuring a Basic Service Set (BSS)? I am stuck on that one.
Más respuestas (0)
Ver también
Categorías
Más información sobre WLAN Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!