http://www.perlmonks.org?node_id=1003272


in reply to Re^4: Reliable FQDN from IP
in thread Reliable FQDN from IP

DNS is my single source of truth and I do not wish to work with assumptions in order for my code to work.

How can you be sure that DNS requests send / DNS responses received by your script or an underlying library are not manipulated?

Perl 5.8.8
Core modules
and force DNS lookup.

It seems the core modules of 5.8.8 are not sufficient to solve your problem, because there seems to be no interface to configure the DNS resolving functions. So you need to include code to resolve from Perl. Net::DNS can do that. It contains some XS code, but using XS is optional. The same is true for some Win32 specific dependancies. Read the Makefile.PL in Net::DNS for details. Include Net::DNS in your code, and you have complete control over name resolution.

This isn't really a Perl discussion now though.

Who cares? I still do not understand why you think that you need to resolve only using the DNS. What is your actual problem you want so solve?

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)

Replies are listed 'Best First'.
Re^6: Reliable FQDN from IP (spec)
by tye (Sage) on Nov 10, 2012 at 22:51 UTC

    He needs a script that can run on systems where he knows they will be configured to query DNS that would return reasonable FQDNs (where "fully qualified" is important) and where people using those systems might have good reason to set up short aliases in their /etc/hosts files for their own purposes. And now he has code for such a script that will get the fully qualified domain names he needs.

    - tye