from socket import *
s = socket(AF_INET, SOCK_DGRAM)
s.bind(("", 53))
while True:
    data, addr = s.recvfrom(1024)
s.close()
