mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-01 03:07:56 +00:00
looks like station_info produces no information, needs refactoring, more debugging
This commit is contained in:
@@ -119,14 +119,13 @@ duration = 0
|
|||||||
maxTime = 300
|
maxTime = 300
|
||||||
ip = "0.0.0.0"
|
ip = "0.0.0.0"
|
||||||
while ((ip == "0.0.0.0") and (duration < maxTime)):
|
while ((ip == "0.0.0.0") and (duration < maxTime)):
|
||||||
print("Station failed to get IP. Waiting 10 seconds...")
|
|
||||||
station_info = getJsonInfo(mgrURL, "port/1/1/sta00000?fields=port,ip")
|
station_info = getJsonInfo(mgrURL, "port/1/1/sta00000?fields=port,ip")
|
||||||
|
|
||||||
#LFUtils.debug_printer.pprint(station_info)
|
LFUtils.debug_printer.pprint(station_info)
|
||||||
if ((station_info is not None) and ("interface" in station_info) and ("ip" in station_info["interface"])):
|
if ((station_info is not None) and ("interface" in station_info) and ("ip" in station_info["interface"])):
|
||||||
ip = station_info["interface"]["ip"]
|
ip = station_info["interface"]["ip"]
|
||||||
duration += 2
|
duration += 4
|
||||||
time.sleep(2)
|
time.sleep(4)
|
||||||
|
|
||||||
if duration >= maxTime:
|
if duration >= maxTime:
|
||||||
print("sta00000 failed to get an ip. Ending test")
|
print("sta00000 failed to get an ip. Ending test")
|
||||||
|
|||||||
Reference in New Issue
Block a user