Skip to main content

pydhcp

Version Python versions License: MIT Docs

A Python DHCP library and server implementation.

pydhcp is pure Python and targets Python 3.9 and newer. Packet parsing and structured packet tooling are portable; actual DHCP serving still depends on OS socket permissions and platform-specific UDP behavior.

Features

  • DHCP Packet Parsing — Full support for parsing and constructing DHCP packets.
  • DHCP Server Base — A simple, async-friendly server foundation with overrideable lease and option policy hooks.
  • DHCP Client & Capture Tools — Basic packet-client builders and a tshark-like capture command for troubleshooting.

Installation

pip install pydhcp

TOML packet encode/decode support is optional. Install pydhcp[toml] if you want pydhcp packet --format toml; JSON, YAML, and INI support remain available with the base package.

Quick start

Synchronous Server

from pydhcp.server import DhcpServer

server = DhcpServer(listen="*")
server.listen()

The built-in server intentionally keeps allocation policy small. It renews existing leases and responds to client-requested addresses, while applications can subclass DhcpServer or provide a custom lease backend for pools, reservations, and site-specific options.

You can also bind explicit endpoints or multiple ports when you do not want wildcard behavior:

server = DhcpServer(listen=[("127.0.0.1", [6767, 6768])], per_interface=True)
server.listen()

Asynchronous Server

import asyncio
from pydhcp.server import AsyncDhcpServer

async def main():
    server = AsyncDhcpServer()
    await server.start()
    # Keep running or handle other async tasks
    # To stop: await server.stop()

asyncio.run(main())

Basic Packet Client

DhcpClient is a packet-level helper for tests and troubleshooting. It sends DHCP messages and queues matching replies, but it does not configure host network interfaces.

from pydhcp.client import DhcpClient

client = DhcpClient(listen=("127.0.0.1", 6768))
discover = client.build_discover(b"\x00\x11\x22\x33\x44\x55")
client.send(discover, destination="127.0.0.1", port=6767)

Command Line Interface (CLI)

pydhcp includes a command line interface for listing network adapters, decoding packets, and starting servers.

# List all network interfaces
pydhcp interfaces

# Decode a hex-encoded DHCP packet from stdin as JSON
pydhcp packet --decode --input - --format json

# Decode a hex-encoded DHCP packet from stdin as a compact text summary
pydhcp packet --decode --input - --format summary

# Encode structured packet text back to hex
pydhcp packet --encode --input packet.json --format json --output packet.hex

# Capture DHCPDISCOVER packets as newline-delimited JSON on stdout
pydhcp capture --listen 127.0.0.1:6767 --filter msg_type=DHCPDISCOVER --output -

# Write one structured file per capture
pydhcp capture --listen 127.0.0.1:6767 --output "output/{client_id}/{timestamp}_{msg_type}.{format}" --output-mode per-capture --format json

# Invoke a trusted local command hook with each captured packet on stdin
pydhcp capture --listen 127.0.0.1:6767 --hook ./on-dhcp-capture

# Start the DHCP server from JSON or INI config
pydhcp server --config config.json

# Listen on multiple explicit endpoints while debugging
pydhcp server --listen 127.0.0.1:6767,127.0.0.1:6768

# Increase logging while debugging (-v is repeatable; --loglevel targets one logger)
pydhcp server --listen 127.0.0.1:6767 -v
pydhcp server --listen 127.0.0.1:6767 --loglevel pydhcp=DEBUG

Development

See development notes for environment setup, dependency install, and test commands.

For comprehensive validation in GitHub Actions, the test workflow also supports manual workflow_dispatch runs and safe ci-* tags. Benchmarks stay repo-local and opt-in: use the workflow's run_benchmarks input or a ci-bench-* tag when you want the benchmark harness included. The repository wrapper and individual benchmark scripts can also write structured JSON reports for local comparison or CI artifact upload:

.\.venv\3.12.10\Scripts\python.exe benchmarks\run.py --suite parse --iterations 10000 --json-output benchmark-results/bench_parse.json
.\.venv\3.12.10\Scripts\python.exe benchmarks\run.py --suite options --iterations 1000 --json-output benchmark-results/bench_options.json
.\.venv\3.12.10\Scripts\python.exe benchmarks\bench_parse.py --iterations 10000 --json-output benchmark-results/bench_parse.json
.\.venv\3.12.10\Scripts\python.exe benchmarks\bench_options.py --iterations 1000 --json-output benchmark-results/bench_options.json

Releasing

This project follows Semantic Versioning and keeps a CHANGELOG.md. Pushing a tag matching v* triggers the release workflow.

Documentation site

MkDocs builds the API reference from docs/, published on every release. The docs also include a "Common DHCP Options" page with typed examples.

License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydhcp-0.5.2.tar.gz (109.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pydhcp-0.5.2-py3-none-any.whl (86.8 kB view details)

Uploaded Python 3

File details

Details for the file pydhcp-0.5.2.tar.gz.

File metadata

  • Download URL: pydhcp-0.5.2.tar.gz
  • Upload date:
  • Size: 109.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pydhcp-0.5.2.tar.gz
Algorithm Hash digest
SHA256 22efc63c1453456920bb2c94ca55ab93dcf26673864ff7e0d3418d0aabc0af8e
MD5 ef9296c8f64333aa5938e612f9baeb20
BLAKE2b-256 941edb4c351f62a18d895afeaabdd3f8fd06f8efc1086cd233cae1e935a13008

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydhcp-0.5.2.tar.gz:

Publisher: release.yml on jose-pr/pydhcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pydhcp-0.5.2-py3-none-any.whl.

File metadata

  • Download URL: pydhcp-0.5.2-py3-none-any.whl
  • Upload date:
  • Size: 86.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pydhcp-0.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fc9d1e3f0eeeb5caacfa2f885ef3103f530cb5f01d58066b3983febbfcd8dbfb
MD5 062120de0c8cdceb4ae50c17f5f4f421
BLAKE2b-256 b4988a7effafbedbe87eca27f33f34b2a0486be8b8f11ee328f38605cffdcb0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydhcp-0.5.2-py3-none-any.whl:

Publisher: release.yml on jose-pr/pydhcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.5.2 This release

2 files

0.5.1

2 files

0.5.0

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page