11
votes
11answers
2k views
How can I find a user’s location based on their IP address? (free and not free services)
If you need to locate a user based on their IP address, what services are available?
p.s. I understand that some users use proxies etc, that mean the result is not 100% accurate. That's ok.
9
votes
6answers
10k views
Linux / C++: Get the IP Address of local computer
This Question is almost the same as the previously asked Get the IP Address of local computer-Question. However I need to find the IP address(es) of a Linux Machine.
So: How do I - programmatically …
9
votes
6answers
2k views
Finding local IP addresses in Python.
How can I find the local IP address (i.e. 192.168.x.x or 10.0.x.x) in python, preferably with only built-in moduals, I would also like it to be platform independent.
8
votes
3answers
1k views
How to enumerate IP addresses of all enabled NIC cards from Java?
Short of parting the results of executing ipconfig, does anyone have a 100% pure java way of doing this?
7
votes
4answers
2k views
How to validate IP address in Python?
What's the best way to validate that an IP entered by the user is valid? It comes in as a string.
7
votes
6answers
997 views
How does a website know what city I’m in?
Many web sites know where I'm from. For example, visiting Yelp shows me restaurant listings from the nearest metropolitan area and searching for "maps" on Live Search shows me a map of my current …
6
votes
11answers
677 views
What is be the most appropriate data type for storing an IP address in SQL server?
What should be the most recommended datatype for storing an IPv4 address in SQL server?
Or maybe someone has already created a user SQL data-type (.Net assembly) for it?
I don't need sorting.
5
votes
5answers
494 views
How can I check if an ip is in a network in python
Given an ip address (say 192.168.0.1), how do I check if it's in a network (say 192.168.0.0/24) in Python?
Are there general tools in Python for ip address manipulation? Stuff like host lookups, ip …
5
votes
13answers
1k views
How would you compare IP address?
For my server app, I need to check if an ip address is in our blacklist.
What is the most efficient way of comparing ip addresses? Would converting the IP address to integer and comparing them …
5
votes
5answers
3k views
How do I get the Local Network IP address of a computer programmatically? (C#)
I need to get the actual local network IP address of the computer (e.g. 192.168.0.220) from my program using C# and .NET 3.5. I can't just use 127.0.0.1 in this case.
What's the best way to do this?
5
votes
3answers
463 views
private IP address ranges
What are the private IP address ranges?
4
votes
3answers
158 views
What is the most accurate way to retrieve a user’s correct IP address in PHP?
I know there are a plethora of $_SERVER variables headers available for IP address retrieval. I was wondering if there is a general consensus as to how to most accurately retrieve a user's real IP …
4
votes
3answers
345 views
How do you determine if an IP address is private, in Python?
In Python, what is the best way to determine if an IP address (e.g., '127.0.0.1' or '10.98.76.6') is on a private network? The code does not sound difficult to write. But there may be more edge …
4
votes
2answers
653 views
IPv4/IPv6 network calculations and validation for Java?
I am looking for a package that is similar to Net_IPv4 and Net_IPv6 but written for Java. It needs to be able to do the following:
Verify an address is valid (e.g. 127.0.0.1 is valid, 127.0.0.257 …
4
votes
1answer
362 views
Is there native .NET type for CIDR subnets?
It's simple enough to code up a class to store/validate something like 192.168.0.0/16, but I was curious if a native type for this already existed in .NET? I would imagine it would work a lot like …
