Skip to content

Instantly share code, notes, and snippets.

@yosshy
Created March 21, 2015 11:09
Show Gist options
  • Save yosshy/4551b1fe3d9af63b02d4 to your computer and use it in GitHub Desktop.
Save yosshy/4551b1fe3d9af63b02d4 to your computer and use it in GitHub Desktop.
DHCP Server with Python Scapy
from scapy.all import DHCP_am
from scapy.base_classes import Net
dhcp_server = DHCP_am(iface='eth1', domain='example.com',
pool=Net('192.168.10.0/24'),
network='192.168.10.0/24',
gw='192.168.10.254',
renewal_time=600, lease_time=3600)
dhcp_server()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment