Skip to main content

A Python DHCP library and server implementation

Project description

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 --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
pydhcp server --listen 127.0.0.1:6767 --log-level 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.

Project details


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.4.0.tar.gz (94.0 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.4.0-py3-none-any.whl (69.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pydhcp-0.4.0.tar.gz
  • Upload date:
  • Size: 94.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pydhcp-0.4.0.tar.gz
Algorithm Hash digest
SHA256 69b43ec3754551b0c283e3561160c44da89fcd21a13ab2f69685f11ac9ca86f5
MD5 4e896a59aa54b97555ed7022ff85460a
BLAKE2b-256 0258534209b670d81805957a950b0428b3cddb4a71a722a727f4a87c85524ae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydhcp-0.4.0.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.4.0-py3-none-any.whl.

File metadata

  • Download URL: pydhcp-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 69.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pydhcp-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 eca644001f01566a7075a0ee5cef1ae6f5e33112ff24300c1d22a26f66d6eb5f
MD5 43039f3cc32bd79fc4295eb1bc28c696
BLAKE2b-256 9617ed3c0005b99732f7c7202e87077d7e78d1bcc7b04ab93749c1a26c87614e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydhcp-0.4.0-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.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page