in reply to header information of a DNS
Very few public domains on the Internet use HINFO records. Some internal domains do contain host info, but only if added explicitly by the administrator.my $res = Net::DNS::Resolver->new(); my $packet = $res->search('example.com', 'HINFO'); my ($rr) = $packet->answer(); print "cpu = ", $rr->cpu, " os = ", $rr->os, "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: header information of a DNS
by Anonymous Monk on Mar 03, 2004 at 09:42 UTC | |
by iburrell (Chaplain) on Mar 05, 2004 at 18:53 UTC |