[pydhcplib] question regarding GetNextDhcpPacket() |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/pydhcplib Archives
]
- To: pydhcplib@xxxxxxxxxxxxxxxxxxx
- Subject: [pydhcplib] question regarding GetNextDhcpPacket()
- From: reza adinata <reza.adinata@xxxxxxxxx>
- Date: Tue, 22 Nov 2011 22:20:41 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=3Eyyk/4v3zGvsXQLaU8XoyzMPW32wR+dCw9BzvcSY5g=; b=b5quFKcqdh58hcA4+0qfV7CpEDn3PsOjGKRmCPXRW+CRzciYKMw6/Htm/17a2r3vul XGZ4AcXsiAYs4y11KLwK2LYlzQkUTgj5fyQLkg1cnt2Rhogudbh5McCuFjqrh22NCSWN 00ywFEOSf2uSM8ErVoNmPCReg/DDmq0S4NTNI=
Hi all,
I am trying to use dhquery tool that uses pydhcplib for test stress.
Tried to send a dhcp REQUEST to a dhcp server, however I do not see
any trace of dhcp request message in wireshark. I tried to trace the
code, it stops basically in the line of
client.GetNextDhcpPacket()
Likewise, in the client of pydhcplib example (
http://pydhcplib.tuxfamily.org/pmwiki/index.php?n=Site.ClientExample
), I read that it does the same to "while True :
client.GetNextDhcpPacket()"
what does this GetNextDhcpPacket() method actually do? Why is it stuck
in the method as if it is waiting for the response? I just need to
basically do a simple DHCP request first, and need to make sure it
shows in the trace..
Thank you all