Tagged Questions

An Internet Protocol address (IP address) is a numerical label assigned to each device in a computer network that uses the Internet Protocol for communication.

learn more… | top users | synonyms (1)

49
votes
8answers
4k 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 ...
46
votes
11answers
44k views

How to get my own IP address in C#?

I am running a server, and I want to display my own IP address. What is the syntax for getting the computer's own (if possible, external) IP address? Someone wrote the following code. IPHostEntry ...
44
votes
14answers
11k views

Know a good IP address Geolocation Service?

I'd like to get your impressions on any ip geolocation (as in IP to location) service services you may have employed? I'm looking for something free or cheap, which shouldn't be unrealistic because I ...
31
votes
11answers
29k views

Finding local IP addresses using Python's stdlib

How can I find the local IP address (i.e. 192.168.x.x or 10.0.x.x) in Python platform independently and using only the standard library?
27
votes
14answers
6k 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.
24
votes
6answers
13k 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.
24
votes
10answers
51k 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 ...
22
votes
12answers
12k views

What services can I used to find a user's location based on their IP address?

If you need to locate a user based on their IP address, what services are available (free and not free services are fine)? P.S. I understand that some users use proxies etc., that means the result is ...
15
votes
6answers
32k views

How to get a user's client IP address in ASP.NET?

We have Request.UserHostAddress to get the IP address in ASP.NET, but this is usually the user's ISP's IP address, not exactly the user's machine IP address who for example clicked a link. How can I ...
14
votes
14answers
589 views

How to tell an IP address with 4 LEDs?

I am developing a net-managed device with the .NET Micro Framework. Since the idea is to have a bunch of devices in an office, sometimes it is necessary for the user to know the IP address of a ...
12
votes
6answers
7k views

Datatype for storing ip address in SQL Server

What datatype should i choose for storing an Ip Address in a SQL Server? By selecting the right datatype would it be easy enough to filter by IP address then?
12
votes
9answers
5k 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 ...
11
votes
2answers
29k views

Access XAMPP Localhost from Internet

I have XAMPP installed in local laptop. And I have a almost static ip. I would like to give the ip to other to run it from thier browser. I configured apache httpd-vhosts.conf to listen my ip ...
11
votes
4answers
8k 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?
10
votes
5answers
1k views

Linq/Lambda OrderBy Delegate for List<string> of IP Addresses

Given List<string> ips = new List<string>(); I need to sort the list of IP addresses in a logical order (i.e. "192.168.0.2" comes before "192.168.0.100"). Currently (and correctly, ...
10
votes
5answers
3k views

How to store an IP in mySQL

We've got a healthy debate going on in the office this week. We're creating a Db to store proxy information, for the most part we have the schema worked out except for how we should store IPs. One ...
10
votes
4answers
11k 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?
9
votes
4answers
3k views

socket.io: get client's IP address

Short and simple - when using socket.io in a node.js server, is there an easy way to get the ip address for an incoming connection? I know you can get it for a standard HTTP connection (see ...
9
votes
3answers
810 views

Get User's IP Address

How can I get the current visitors IP address?
9
votes
1answer
864 views

libpcap IP Packet Reassembly

I'm looking for a sample code for IP packet reassembly in C with libpcap*. Is IP packet defragmentation implemented in libpcap library officially? I've found this proposal : ...
9
votes
5answers
2k views

How do I determine all of my IP addresses when I have multiple NICs?

I have multiple Network Interface Cards on my computer, each with its own IP address. When I use gethostbyname(gethostname()) from Python's (built-in) socket module, it will only return one of them. ...
8
votes
8answers
2k views

Should the website switch language based on IP address or browser language?

Geo-location has been used most by Websites to do redirection, but I have found that several IP addresses locate a country which has using several languages. Meantime, some users prefer to using the ...
8
votes
8answers
1k views

IP address SQL injection

Is it possible for a user to forge the result that is returned from $_SERVER['REMOTE_ADDR'] in PHP so they could in theory use SQL injection on a database? This is a bit dumb, but I'm still new ...
8
votes
5answers
11k views

Getting the client IP address: REMOTE_ADDR, HTTP_X_FORWARDED_FOR, what else could be useful?

I understand it's a standard practice to look at both these variables. Of course they can easily be spoofed. I'm curious how often can you expect these values (especially the HTTP_X_FORWARDED_FOR) to ...
8
votes
4answers
9k views

How to get City, Country, and Country Code for a particular IP Address in ASP.NET?

I am having an application in which i am storing user ip address. But now i want to store the City, Country and Country Code of the user on the basis of their ip addresses. So I am able to get the ...
8
votes
12answers
4k 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 ...
8
votes
6answers
3k views

How do I find a user's IP address with PHP?

I would like to find a user's IP address when he/she enters my page. How do I programmatically do that?
7
votes
2answers
366 views

How to sort list of Ip Addresses using c#

I've a list of IP addresses as follows 192.168.1.5 69.52.220.44 10.152.16.23 192.168.3.10 192.168.1.4 192.168.2.1 I'm looking for such a way to sort this list to match the below order 10.152.16.23 ...
7
votes
2answers
1k views

I need a JQuery IP Mask plugin

Is there a good IP Mask plugin for JQuery? I've tried Masked Input Plugin but it doesn't IP Addresses with less than 12 digits. Then I've tried meioMask and this doesn't work with less than 12 digits ...
7
votes
3answers
4k views

Get Local IP-Address using Boost.Asio

I'm currently searching for a portable way of getting the local IP-addresses. Because I'm using Boost anyway I thought it would be a good idea to use Boost.Asio for this task. There are serveral ...
7
votes
2answers
1k views

C#: Get IP Address from Domain Name?

How can I get an IP address, given a domain name? For example: www.test.com
7
votes
5answers
6k views

How do I find my server's IP address in PHP(CLI)

Aside from the obvious (localhost, 127.0.0.1) does PHP (command line interface!) have a mechanism for discovering the IP of the computer the script is running on? $SERVER[] will not work as this is ...
7
votes
12answers
2k views

Getting my ip address

I have a computer on a small network, so my ip is 192.168.2.100. I am trying to get my real ip. I download the no-ip client but that just seems like a lot of trouble for such a simple thing. I ...
7
votes
3answers
7k views

How to determine if a string is a valid IPv4 or IPv6 address in C#?

I know regex is dangerous for validating IP addresses because of the different forms an IP address can take. I've seen similar questions for C and C++, and those were resolved with a function that ...
7
votes
8answers
3k views

Discovering public IP programatically

I'm behind a router, I need a simple command to discover my public ip (instead of googling what's my ip and clicking one the results) Are there any standard protocols for this? I've heard about STUN ...
7
votes
5answers
2k views

How does a website know what city I'm in? [closed]

Possible Duplicate: How can I find a user's location based on their IP address? (free and not free services) Many web sites know where I'm from. For example, visiting Yelp shows me ...
7
votes
3answers
2k views

Finding a public facing IP address in Python?

How can I find the public facing IP for my net work in Python?
6
votes
4answers
2k views

IP address in rails

I have Rails 2.3.8, Ruby 1.8.7, Mongrel Web Server and MySQL database. I need to find the IP address but I am facing problems. I am in the development mode. I googled and found code, that its simple ...
6
votes
3answers
2k views

HTML5 Websocket only works on localhost

I followed the HTML5 Websocket tutorial of the website below: http://net.tutsplus.com/tutorials/javascript-ajax/start-using-html5-websockets-today/ It worked well, then I changed the host value from ...
6
votes
6answers
879 views

Most efficient way to store IP Address in MySQL

What is the most efficient way to store and retrieve IP addresses in MySQL? Right now I'm doing: SELECT * FROM logins WHERE ip = '1.2.3.4' Where ip is a VARCHAR(15) field. Is there a better way ...
6
votes
6answers
223 views

How to detect if user is connecting from a recognized computer?

On many banking and investment websites, the site prevents users from logging in from an unrecognized computer without first answering an additional question or activating that machine. How do ...
6
votes
2answers
1k 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 ...
6
votes
3answers
736 views

private IP address ranges

What are the private IP address ranges?
5
votes
3answers
116 views

Is there a function that can take an ipAddress as string and tell me if its a non-routable IP address?

I am trying to determine if an IP address is routable. For example, if I receive 127.0.0.1, I know that this is loopback(ie: localhost). I wasn't able to find a function for this in .NET or any ...
5
votes
1answer
340 views

Detect IPv6 in PHP?

I am currently detecting the user's IPv4 address and using IP blocks with the v4. However I want to capture the IPv6 and have block lists for this too, so the question is: Is it the same logic to get ...
5
votes
3answers
153 views

Parsing IP Address in .NET

I have a string that can either represent a host name (myip.noip.org, etc.) or it can represent a true address ("127.0.0.1"). What is the best way to resolve this to a System.Net.IPAddress? Thanks in ...
5
votes
5answers
270 views

find all occurrences of comparison with == in visual studio

I made the mistake of using == for comparing IP addresses instead of using the equals() method of the IPAddress class in C#, which will result in the comparison of references instead of values. Since ...
5
votes
3answers
1k views

Rails 3: Validate IP String

In Rails 3, is there a built in method for seeing if a string is a valid IP address? If not, what is the easiest way to validate?
5
votes
2answers
382 views

Port to Service Name in Java?

My services file (C:\WINDOWS\system32\drivers\etc\services) has a bunch of Port to Service mappings: echo 7/tcp echo 7/udp discard 9/tcp sink null discard ...
5
votes
7answers
5k views

Getting the 'external' IP address in Java

I'm not too sure how to go about getting the external IP address of the machine as a computer outside of a network would see it. My following IPAddress class only gets the local IP address of the ...

1 2 3 4 5 16