<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7638.1">
<TITLE>RE: [Nagios-users] Host name from IP address</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->

<P><FONT SIZE=2>Hi,<BR>
<BR>
<BR>
> I don't think I explained this properly.  I don't want to know the host<BR>
> name (DNS), I want know the name that Nagios knows it by, from the<BR>
> hosts.cfg file.<BR>
<BR>
>> So if you are not looking to write a script, just use ping -a <IP> in<BR>
>> windows and that will reverse dns the IP for you.  Then just do a ctl +<BR>
>> f in the config files.<BR>
<BR>
Within perl it is not to hard:<BR>
<BR>
        $iaddr = inet_aton($ipnumber);<BR>
        $hostname = gethostbyaddr($iaddr, AF_INET);<BR>
<BR>
Best regards,<BR>
<BR>
Hans</FONT>
</P>

</BODY>
</HTML>