Skip to content

p4u/dhcpdiscover

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

  • Program: dhcpdiscover

    This program checks the existence and more details of a DHCP server

  • About the code structure

    The Makefile found in the directory of this README is for OpenWRT. It can be imported as a package. Inside the src/ directory the C code of dhcpdiscover can be found. If you want to compile it for your computer execute: cd src && make

  • Licence information

    Code under GPLv3

    Copyright (c) 2001-2004 Ethan Galstad (nagios@nagios.org), 2013 OpenWRT.org

  • Contributors

    Mike Gore 25 Aug 2005: Modified for standalone operation
    Pau Escrich Jun 2013: Added -b option and ported to OpenWRT


Usage: dhcpdiscover [-s serverip] [-r requestedip] [-m clientmac ] [-b bannedip] [-t timeout] [-i interface]
                  [-v] -s, --serverip=IPADDRESS
   IP address of DHCP server that we must hear from
 -r, --requestedip=IPADDRESS
   IP address that should be offered by at least one DHCP server
 -m, --mac=MACADDRESS
   Client MAC address to use for sending packets
 -b, --bannedip=IPADDRESS
   Server IP address to ignore
 -t, --timeout=INTEGER
   Seconds to wait for DHCPOFFER before timeout occurs
 -i, --interface=STRING
   Interface to to use for listening (i.e. eth0)
 -v, --verbose
   Print extra information (command-line use only)
 -h, --help
   Print detailed help screen
 -V, --version
   Print version information

Example: sudo ./dhcpdiscover -i eth0 -b 192.168.1.1

About

DHCP discover tool (based on dhcping)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 97.4%
  • Makefile 2.6%