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)
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.