I'm currently working on a Python utility for LAN's, and currently, if I run the program repeatedly, it will intermittently throw this error.
Traceback (most recent call last):
File "netbin.py", line 49, in <module>
results = pool.map(ping, pAddress)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/multiprocessing/pool.py", line 225, in map
return self.map_async(func, iterable, chunksize).get()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/multiprocessing/pool.py", line 522, in get
raise self._value
socket.error: [Errno 64] Host is down
Is there a reason that this issue might keep coming up?