Geographical location details of a server


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Geographical location details of a server
# 1  
Old 07-03-2012
Geographical location details of a server

Is there a way to find geographical location details of a server in shell scripting ? Say, which region server is located at etc.
# 2  
Old 07-03-2012
you can use the any web service that serve the location information from your public IP-address for this issue and maybe like the below commas..


Moderator's Comments:
Mod Comment Neo: Please do not post links to poorly executed/written scripts. GeoIP details below. Thanks.
# 3  
Old 07-03-2012
Most people use MaxMinds geoip libs for opensource geolocation information.

Quote:
MaxMind offers open source APIs for use with the binary format of the GeoIP databases. The APIs are optimized for speed, memory usage, and database size.

APIs for GeoIP Products
# 4  
Old 07-03-2012
i tried this example and works

Find by IP - Perl IP to location Example
# 5  
Old 07-03-2012
Quote:
Originally Posted by Neo
Most people use MaxMinds geoip libs for opensource geolocation information.



APIs for GeoIP Products
allright , these commands are poorly but the request is for shell script..
we can use the lynx or wget or other tools for pure shell env..

however did you mean "geoiplookup" ?
if it is that , as far as I know , geoiplookup return only Country ?
Code:
# geoiplookup 212.156.XX.XX
GeoIP Country Edition: TR, Turkey

maybe we can use this int the shell enviroment
Code:
# wget -qO - http://www.geoiptool.com/en/?IP="212.156.XX.XX"|sed -n '/City</s#.*City</strong>: \([A-Za-z][A-Za-z]*\).*Country</strong>: \([A-Za-z][A-Za-z]*\).*#\1 --> \2#p'
Istanbul --> Turkey

regards
ygemici
# 6  
Old 07-03-2012
The way I see it is that if you are operating in a shell within a unix/linux environment, you are "in the shell" and if running script (any script) withing the shell you are running a "shell script".

This also means that you could compile the C code from MaxMinds that goes geolocation and run that binary "in the shell" and you are running a "shell script".

We run MaxMinds geolocation code/scripts on many web sites, and sometimes the requirement is for continent, country, region, state, designated metropolitan area (DMA), city, or even area code or zip code.

Frankly, I would never do this calling a service using wget or curl; because that would be adding an unnecessary, unreliable, and slow network call across the net to get geolocation data that is easily obtained with the various (free, opensource) MaxMinds APIs. mod_geoip for Apache is based on the same code.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Geographical distance between long and lat in bash

Does anyone know of any script or packages that allow the calculation of the geographical distance between two points of lat/long from within a bash shell? I have been searching the web for the past few days and none of the options seem compatible with bash variables... (eg. geodist) Many... (3 Replies)
Discussion started by: lily-anne
3 Replies

2. UNIX for Advanced & Expert Users

NTP server name and ip details on Linux/Solaris

Hi All, Where can I find all the NTP server names/ip addresses on Linux/Solaris systems. How can I grep these names/IP address from specific files from a specific OS (Linux/Solaris). I know on linux /etc/ntp.conf and /etc/ntp/ntp.conf on solaris contains these details. Whether I am right about... (4 Replies)
Discussion started by: sanzee007
4 Replies

3. Solaris

Sun Server Hardware Inventory Details

How can I get the hardware inventory details of the Sun Servers like T5220 running Solaris 10? I would like to see the following details: 1. Chassis Information - Part Number, Serial Number etc. 2. Slots Present in the chassis 3. Modules/Cards equipped on the slots. Module details like Part... (8 Replies)
Discussion started by: baddy
8 Replies

4. UNIX for Dummies Questions & Answers

how to check SMTP server details on Unix

Hi All, I am trying to figure out how to check SMTP server details on Unix enviornment? I tried using echo "hello" | sendmail -v abc@xyz.com and got following error: -bash: sendmail: command not found -bash: echo: write error: Broken pipe Any help will be much appreciated regarding... (2 Replies)
Discussion started by: palak08
2 Replies

5. AIX

AIX Server P560/P570 Details

Hi Guys, Require your help please to find out the power consumption for IBM P6 series server. 1> What is the maximum power used by one IBM AIX P560 & P570 server in kilo watts (KW). 2> What is the weight of one IBM AIX P560 & P570 servers in KG. This is urgently required for me to procure... (1 Reply)
Discussion started by: ajilesh
1 Replies

6. HP-UX

HP-UX Server Details

OS: HP-UX I need the following details from HP-UX server. I don't have root login, so most of the commands require root privilege 1. No of cpu in the server 2. Total Memory, Free & Used 3. Space used and free space Any help would be highly appreciated (6 Replies)
Discussion started by: manijash
6 Replies

7. Shell Programming and Scripting

Find the geographical location within a shell script

Hi, I need a shell script that when run should be able to find the geographical location of the system. can anyone help me with this? Thanks, Sundeep (1 Reply)
Discussion started by: eamani_sun
1 Replies

8. Solaris

Some Details from my server like mirror

Hello, I need to get some details from my server like Internal hard disk details for my UNIX (Solaris 9) server like whether OS is mirrored or not, what type of mirror is used. Which hard disk are used for mirror ? Regards (1 Reply)
Discussion started by: adel8483
1 Replies

9. Solaris

Find server details

Hi experts Is there a command or a way in Solaris to find server details like this: SUN240R 2 @ 160MHz CPU 1Gb memory Solaris8 lan0 (16SV LAN) 100FD lan1 (45CI LAN) 100FD lan2 (8CON LAN) 10HD lan3 (38SY LAN) 100HD Thanks (1 Reply)
Discussion started by: lalelle
1 Replies

10. Filesystems, Disks and Memory

how to find out unix server details

I like to find out Server Drive/Storage Specifications like Drive Size? Storage Type: Local or SAN ? Number of Processors: Processor Speed: Memory: please someone help me out how I can get from command line? Thanks you in advance (4 Replies)
Discussion started by: thopputhurai
4 Replies
Login or Register to Ask a Question