procurando por um utilitário para testar as configurações do DHCP

0

Iv'e instalou recentemente o servidor DHCP ( isc-dhcp-server ) no meu local de trabalho.

Estou procurando um utilitário para testar as configurações de DHCP da rede a partir de uma máquina remota ( não usando dhclient / iptables /renew ).

  • indicação do servidor de resposta (às vezes, meus colegas instalam por engano serviços DHCP)
  • a capacidade de fornecer um endereço MAC (para testar reservas de pool)
  • exibição simples da resposta

por exemplo:

$> [utility name] [source mac address | optional] ...

RESPONSE (DHCP Server is 192.168....)
    IP: 192.168.....
    SUBNET: 255.255.....
    DEFAULT GATEWAY: 192.168.....
    ...
    
por Jossef Harush 15.07.2015 / 09:18

2 respostas

3

Você pode experimentar o utilitário "dhcping". No CentOS / RHEL, você terá a opção de "yum install it" depois de ganhar conectividade com o repositório EPEL. Confira as opções de comando. Eles parecem realmente relevantes para as suas necessidades.

dhcping(8)                  General Commands Manual                 dhcping(8)

NAME
   dhcping - send a DHCP request to DHCP server to see if it’s up and running

SYNOPSIS
   dhcping [-v] [-q] [-i] [-r] -t maxwait -c client-IP-address -s server-IP-address -h client-hardware-address [-g gateway-
   IP-address]

DESCRIPTION
   This command allows the system administrator to check if a remote DHCP server is still functioning.

   Options are:

   -v   Verbose, print some information.

   -i   Use DHCPINFORM packets.

   -r   Use DHCPREQUEST packets (default behaviour).

   -q   Quiet, print nothing on the screen.

   -t maxwait
        Maximum time to wait for an answer from the server in seconds.  Default is 3 seconds.

   -c client-IP-address
        Request this IP address. Note that this is also the IP address the answer will be sent to.

   -s server-IP-address
        Send the DHCP packet to this IP address.

   -h client-hardware-address
        Use this hardware-address in the DHCP request. It can be up to sixteen octets seperated by colons (i.e. 01:02:03:04)

   -g gateway-IP-address
        Use this IP address for the gateway IP address in the DHCP packet.  This option is currently broken

Tudo de bom!

+ Daniel.

    
por 15.07.2015 / 09:46
0

Este é um tópico antigo, mas, para todo o seu valor, o meu voto vai para link Do blog:

While trying to set up my home network, I was dismayed that there was no simple way to test the DHCP server. Snooping packets is limited to examining existing traffic.

DHCP test tools exist (DHCPing and dhquery), however, both are outdated and don’t work with the latest versions of their requirements, and both won’t work on Windows.

I’ve written a simple DHCP “client” which can receive and decode broadcasted DHCP replies, as well as send out DHCP “discover” packets. The tool is cross-platform and should work on Windows and major POSIX systems.

Eu fiz o download do link e o compilei. Ele fornece versões compiladas para windows, mas no Linux você tem que compilar você mesmo, o que é muito fácil com boas instruções.

    
por 14.11.2017 / 21:53