From: Frank T. <ft...@ne...> - 2005-09-27 05:39:55
|
Drew Marshall, on 2005-09-25, wrote: > self.socket.sendto(mac_msg_str, 0, address) > socket.error: (13, 'Permission denied') > > Now clearly the last line is significant. I have run this as root so > it's not (Or shouldn't be) a permissions problem with files or > directories and as root I shouldn't have issues with binding to low > numbered ports, which was one suggestion from Google. Interesting. Given you're getting an EACCES error (13 is EACCES on Linux, and I'm assuming it's likewise on FreeBSD), my best guess is that you have a firewall setup which might be disallowing pyzor to use a UDP port to send messages. -- Frank |