11269:ce3bcd9df3b3 | 11270:0e220c26e60e |
---|---|
24 | 24 |
25 nic.active(False) | 25 nic.active(False) |
26 nic.active(True) | 26 nic.active(True) |
27 nic.ifconfig(ifconfig) | 27 nic.ifconfig(ifconfig) |
28 max_wait = 140 | 28 max_wait = 140 |
29 while max_wait: | 29 while max_wait and not nic.isconnected(): |
30 if nic.isconnected(): | |
31 break | |
32 max_wait -= 1 | 30 max_wait -= 1 |
33 time.sleep(0.1) | 31 time.sleep(0.1) |
34 | 32 |
35 if nic.isconnected(): | 33 if nic.isconnected(): |
36 print("Connected to LAN:", nic.ifconfig()) | 34 print("Connected to LAN:", nic.ifconfig()) |