Skip to content

Instantly share code, notes, and snippets.

@iandygit
iandygit / ddnsserver.py
Created July 14, 2022 07:47 — forked from pklaus/ddnsserver.py
Simple DNS server (UDP and TCP) in Python using dnslib.py
#!/usr/bin/env python
"""
LICENSE http://www.apache.org/licenses/LICENSE-2.0
"""
import argparse
import datetime
import sys
import time
import threading