Ask a Question related to PERL Miscellaneous, Design and Development.
-
Nigel Horne #1
Re: Lookup Country by IP Address
143.182.124.4 [Shameer Balasingam] wrote:
Alternatively try this at the shell prompt:>
> There is a database to lookup all IP address space to country. Pretty
> cool...
whois 207.46.134.190 | fgrep -i country
Nigel Horne Guest
-
Global Address/Phone/SSN[Country ID]
I have to write an application that deals with clients in multiple countries. The addresses, phone numbers, country id and currency information has... -
[OT] Utility to lookup hosts on an IP address
Is there a tool along the lines of nslookup, dig, host, and so on that can list what websites, i.e. domain names, are hosted on a particular IP... -
[PHP] Mac Address Lookup
If you have the IP address, then 'nslookup' or I guess now 'dig' and 'host' would be the newere versions. They are Linux system calls, use... -
Mac Address Lookup
I am trying to do a lookup of a Mac Address via PHP. Is there any way to do so like gethostbyaddr that gets me the name of a machine? Thanks. -
Address book and maps: set country?
Hi. Is there any way of setting the country Address Book uses by default? I'm in the UK, and don't want to have to edit every address to say... -
Nigel Horne #2
Re: Lookup Country by IP Address
As it's a perl group I should have given the Perl route:
#!/usr/bin/perl -wT
use strict;
use Net::Whois::IANA;
my $ip = '212.159.106.41'; # Insert an IP address here
print new Net::Whois::IANA->whois_query(-ip=>$ip)->country() . "\n";
Nigel Horne Guest
-
www #3
Lookup Country by IP Address
I want to know if there is a free service or database available from where I
can get the country information if I pass it the IP address. If been to a
site where you can do a free lookup, but I want to automate it.
Your help or ideas will be greatly appreciated
Cheers
Charles
www Guest
-
Hexagon #4
Re: Lookup Country by IP Address
Try [url]http://www.maxmind.com[/url]
"www" <charles@paltrack.co.za> wrote in message
news:3f4eef99$0$64725@hades.is.co.za...I> I want to know if there is a free service or database available from where> can get the country information if I pass it the IP address. If been to a
> site where you can do a free lookup, but I want to automate it.
>
> Your help or ideas will be greatly appreciated
>
> Cheers
> Charles
>
>
Hexagon Guest
-
Russell Turner #5
Re: Lookup Country by IP Address
"Hexagon" <spam1@dwstech.com> wrote in message news:<QOF3b.87$cg.9775@news02.tsnz.net>...
GeoDirection at [url]http://www.geobytes.com/GeoDirection.htm[/url] redirects> Try [url]http://www.maxmind.com[/url]
>
>
> "www" <charles@paltrack.co.za> wrote in message
> news:3f4eef99$0$64725@hades.is.co.za...> I> > I want to know if there is a free service or database available from where> > can get the country information if I pass it the IP address. If been to a
> > site where you can do a free lookup, but I want to automate it.
> >
> > Your help or ideas will be greatly appreciated
> >
> > Cheers
> > Charles
> >
> >
browsers based on their geographic location and also can be used to
insert localized geographic content into a web page.
Kind Regards
Russell Turner
Russell Turner Guest
-
MK Wong #6
Re: Lookup Country by IP Address
Try [url]http://www.ip2location.com[/url]
[email]russ@geobytes.com[/email] (Russell Turner) wrote in message news:<c1874a8a.0309290220.3d812e99@posting.google. com>...> "Hexagon" <spam1@dwstech.com> wrote in message news:<QOF3b.87$cg.9775@news02.tsnz.net>...> I> > Try [url]http://www.maxmind.com[/url]
> >
> >
> > "www" <charles@paltrack.co.za> wrote in message
> > news:3f4eef99$0$64725@hades.is.co.za...> > > I want to know if there is a free service or database available from where>> > > can get the country information if I pass it the IP address. If been to a
> > > site where you can do a free lookup, but I want to automate it.
> > >
> > > Your help or ideas will be greatly appreciated
> > >
> > > Cheers
> > > Charles
> > >
> > >
> GeoDirection at [url]http://www.geobytes.com/GeoDirection.htm[/url] redirects
> browsers based on their geographic location and also can be used to
> insert localized geographic content into a web page.
>
> Kind Regards
> Russell TurnerMK Wong Guest
-
Vince C. #7
Re: Lookup Country by IP Address
"Russell Turner" <russ@geobytes.com> a écrit dans le message de
news:c1874a8a.0309290220.3d812e99@posting.google.c om...
[...]Hem... don't want to throw oil were water is needed but it seems maxmind.com is> GeoDirection at [url]http://www.geobytes.com/GeoDirection.htm[/url] redirects
> browsers based on their geographic location and also can be used to
> insert localized geographic content into a web page.
more accurate. I'm surprised to discover I'm living in Algeria :-D. I'm Belgian
and sure I'm not spoofing anyone's identity. GeoRedirect and ip2location are
both wrong.
Vince C.
Vince C. Guest



Reply With Quote

