Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^4: Reliable FQDN from IP

by agentorange (Sexton)
on Nov 09, 2012 at 14:37 UTC ( [id://1003143]=note: print w/replies, xml ) Need Help??


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

Not true I'm afraid. At a minimum most machines will have their primary interface and the hostname of its other interfaces within /etc/hosts.

Whilst you shouldn't underestimate the benefit of considering things that shouldn't happen in your environment, ie. access to root, that is not the reason for wanting to ensure we solely query DNS in this instance. DNS is my single source of truth and I do not wish to work with assumptions in order for my code to work.

Additionally it'll run across 100K+ hosts therefore you have to work with the lowest common denominator to ensure your code is portable across that number of hosts.

Hence why:

Perl 5.8.8
Core modules
and force DNS lookup.

This isn't really a Perl discussion now though.

Replies are listed 'Best First'.
Re^5: Reliable FQDN from IP
by afoken (Chancellor) on Nov 10, 2012 at 18:52 UTC
    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". ;-)

      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        

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1003143]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-18 19:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found