Dns.GetHostByAddress

  • Thread starter Thread starter RZ
  • Start date Start date
R

RZ

Hi Folks,

I wrote an app to scan our Packet Filter logs for certain IPs. It uses
GetHostByAddress().
I used multi-threading to get around the 2 second hang. The remaining
problem is that
GetHostByAddress() also attempts to resolve the machine name via NetBIOS.
After
running the application, the blocked packets to port 137 from our own IP are
added
to the logs. How can I avoid this?

BTW, a free copy is here:
http://nikola.com/freebies.htm

Regards,
-
Robert
 
Try to disable NetBIOS over TCP/IP in the WINS settings for the interface(s)
to see if that helps.
 
Back
Top