11736 Help on this perl requirement - Perl Programming
Training, Open Source computer languages
PerlPHPPythonMySQLApache / TomcatTclRubyJavaC and C++LinuxCSS 
Search for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
Help on this perl requirement

Posted by ksamir2004 (ksamir2004), 12 August 2008
Help on writing Script.

Can any one help me to writing perl script on this issue.
when we pass command on prompt # nslookup  www.wellho.net

it shows :

Server:  utilits.xxx.xxx (Your Server hostname)
Address:  121.172.131.79(client machine Ip address)

Name:    www.wellho.net (Lookup website name)
Address:  83.170.95.163(server Ip address)

we have bulk IP address of this kind.

So our requirements, its should print on Text File like  this format:

Server Ip IP ADDRESS                         Lookup website name
83.170.95.163                                         www.wellho.net

i written perl script. so attaching plz have look and

$x="C:/perlfile/sami1.txt"
open (DAT,$x)||die "unable to open file";
@raw_data=<DAT>;
close(DAT);
foreach $wrestler (@raw_data)
{
chomp($wrestler);
print `nslookup  $wrestler `;
 }

can any one help me out on this issue.

Thanks
Sam

Posted by admin (Graham Ellis), 13 August 2008
How about this?

Code:
@raw_data = <DATA>;
foreach (@raw_data) {
       /Name:\s+(.*)/ and $name = $1;
       /Address:\s+(.*)/ and $address = $1;
       }
print ("$address $name\n");
__END__
Server:         62.31.176.39
Address:        62.31.176.39#53

Non-authoritative answer:
Name:   www.wellho.net
Address: 83.170.95.163


Working example - I have included the data with the program so you can try it out.

Code:
earth-wind-and-fire:~ grahamellis$ perl dibble
83.170.95.163 www.wellho.net
earth-wind-and-fire:~ grahamellis$




This page is a thread posted to the opentalk forum at www.opentalk.org.uk and archived here for reference. To jump to the archive index please follow this link.

You can Add a comment or ranking to this page

© WELL HOUSE CONSULTANTS LTD., 2013: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • FAX: 01144 1225 899360 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho
0