Try to read 'perldoc -f gethostbyname'. Basically, using that function you can get address suitable for use with 'connect' or 'bind' functions.

Module Socket also offers functions inet_ntoa and inet_aton that can be used to convert between packed and unpacked IP addresses.

Normally, module IO::Socket::INET takes care of this for you. So I don't remember when I've used these functions last time.

Just for general education. On the low level, networking requires "packed" addresses. The format of these addresses depends on the type of the network. Normally people work with IPv4 networks. The addresses on these networks are represented by 4 numbers from 0 to 255. Unpacked form of these addresses is written as 4 numbers joined by dot (10.30.96.10). One has to use some function to convert from "unpacked" form to "packed" one. To make things more complex (but easier to remember) people have introduced names that are associated with numbers. Those are referred as "domain-names". There's a service that maps names to IP addresses. There are special system functions for accessing that service. The service returns "packed" addresses.

Of course, if you have string '10.30.96.10', then you don't have to access DNS to obtain packed address. Function Socket::inet_aton can pack it for you. In this case, DNS can be contacted to obtain domains that are associated with this address (reverse lookup).


In reply to Re: Net::Dns::packet creation. by andal
in thread Net::Dns::packet creation. by MonkeyManChfKiller

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.