You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a scenario/topology with mobile stations and APs. The mobile stations move randomly. I have been trying to get all the stations' information as and when they enter an AP region periodically in Python code.
After creating the topology, I tried to execute the below lines.
for ap in net.aps:
print(f"\nAccess Point: {ap.name}")
associated_stations = ap.associatedStations
print ("The associated_stations for ", ap, " are", associated_stations)
But this throws following error.
How do I achieve this ? Please help.
The text was updated successfully, but these errors were encountered:
Hi Sir,
I have a scenario/topology with mobile stations and APs. The mobile stations move randomly. I have been trying to get all the stations' information as and when they enter an AP region periodically in Python code.
After creating the topology, I tried to execute the below lines.
for ap in net.aps:
print(f"\nAccess Point: {ap.name}")
associated_stations = ap.associatedStations
print ("The associated_stations for ", ap, " are", associated_stations)
But this throws following error.
How do I achieve this ? Please help.
The text was updated successfully, but these errors were encountered: