Tagged Questions

The IP tag is for questions related to the Internet Protocol, not for Intellectual Property.

learn more… | top users | synonyms

26
votes
11answers
18k views

How to convert an IPv4 address into a integer in C#?

I was going to attempt to write this function myself but I thought that someone on SO might know the answer :) I'm basically looking for a function that will convert a standard IPv4 address into an ...
26
votes
10answers
4k views

IP to Country?

Does anyone know of a simple way to retrieve the country for a given IP Address? Preferably in ISO_3166-1 format?
15
votes
4answers
13k views

Working with IPv6 Addresses in PHP

After searching around somewhat thoroughly, I noticed a slight lack of functions in PHP for handling IPv6. For my own personal satisfaction I created a few functions to help the transition. The ...
14
votes
2answers
121 views

PHP IP Filtering

i want to allow users to filter their login based on their ip address (a new settings in the user preferences i will implement). so if a user with a specific ip login and there is not restriction, ...
14
votes
8answers
2k views

Is 0.0.0.0 a valid IP address?

Is 0.0.0.0 a valid IP address? I want my program to be able to store it as an indication that no address is in use, but this won't work if it's actually valid.
13
votes
2answers
116 views

mysql Query slow - IP lookup (banned or not)

I have on my PHP file a function that check if an IP is banned or not. For some reason my site is very slow and the problem is when I check if the IP is banned or not. (I remove the code that checks ...
12
votes
6answers
7k views

What's the easiest to remember publicly pingable IP address?

For frequent network troubleshooting purposes, do you know a publicly pingable host with an easy to remember IP address (such as 1.2.3.4)?
10
votes
2answers
193 views

What does the abbreviation “s_”, “ai_”, “sin_”, “in” (if such) in the IP structures mean?

Pretty simple questions. And yes, maybe not (that) important, but I'm really curious what do they mean and I couldn't find their meanings. // ipv4 struct sockaddr_in { short int ...
10
votes
6answers
329 views

Small footprint clock synchronization without NTP

I'm looking for a simple clock synchronization protocol that would be easy to implement with small footprint and that would work also in the absence of internet connection, so that it could be used ...
10
votes
6answers
14k views

How to get Time Zone through IP Address in PHP

I want to get time zone through IP Address in PHP. Actually i have an application which will run at the client machine. I have IP address of client machine. But not able to get the time zone for each ...
10
votes
7answers
13k views

What is the difference between 0.0.0.0 and 255.255.255.255 in IPv4?

I've heard some people say the IPv4 broadcast address is 0.0.0.0 and others say it is 255.255.255.255... would someone explain the real-world difference?
9
votes
3answers
105 views

Different browsers, different IPs?

I'm saving the user's IP addresses by saving the value of $_SERVER['REMOTE_ADDR'] in a MySQL database. Problem is that for both Firefox and Chrome $_SERVER['REMOTE_ADDR'] is ::1 (that means localhost ...
9
votes
2answers
7k views

How do I access ARP-protocol information through .NET?

I am trying to figure out what devices are online and offline in our LAN. I've seen many programs doing a kind of graphical network overview, presenting LAN IP and MAC addresses. I would like to know ...
9
votes
6answers
2k views

How does geographic lookup by IP work?

Is which IPs are assigned to which ISPs public information? How do geo IP services obtain this information and maintain this information? How can I personally figure out where a certain IP belongs ...
8
votes
4answers
286 views

Block facebook from my website

I have a secure link direction service I'm running (expiringlinks.co). If I change the headers in php to redirect my visitors, then facebook is able to show a preview of the website I'm redirecting to ...
8
votes
2answers
300 views

Can $_SERVER['REMOTE_ADDR'] be trusted?

I have a website where only a couple of people can access it, so the number of IPs logged in is very limited. Everything submitted by the 'admins' logged in is sent to a specific folder dependent of ...
8
votes
5answers
15k views

How to calculate the IP range when the IP address and the netmask is given?

When a IP-Range is written as aaa.bbb.ccc.ddd/netmask (CIDR Notation) I need to calculate the first and the last included ip address in this range with C#. Example: Input: 192.168.0.1/25 Result: ...
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 ...
7
votes
5answers
159 views

Perl bitwise AND giving me funky results

I am writing a little perl script to compare two IP addresses using perls bitwise AND operator. but I am getting some really funky results. I'm new to perl so maybe someone can give me a few pointers. ...
7
votes
3answers
948 views

How to get ip address and port number assigned by .net

I have 2 winforms, one acts as server (ie Winform:Server role) and another one as client (ie Winform: Client role). In my LAN setup, there are 6 PCs and these PCs connected to each other via a 8-port ...
7
votes
8answers
281 views

IP fallback in android

I'm accessing a server for web service calls. When I'm developing on the same network as the server, I can access the web service by its internal IP address but not its external IP address. However, ...
7
votes
5answers
2k views

Store IPv6 in database

What's the best practise to store IP's with PHP in MySQL database? There's a function called ip2long - but this is just for IPv4. But what about IPv6? I know a php function that is for IPv6 IP's, but ...
7
votes
8answers
4k views

Get ip address in C language

I need to display all the ip addresses from my local computer, using C language. How this can be done? Thanks.
7
votes
3answers
3k views

How can I specify the local address on a java.net.URLConnection?

My Tomcat instance is listening to multiple IP adress, but I want to control what source IP address is used when opening a URLConnection. How can I specify this?
7
votes
7answers
9k views

Reverse DNS lookup in perl

How do I perform a reverse DNS lookup, that is how do I resolve an IP address to its DNS hostname in Perl?
6
votes
1answer
278 views

What may cause a TCP/IP reset (RST) flag to NOT be sent?

I've two linux servers (let's name them A and B), connected to same (unmanaged) switch. I've disabled firewall on both servers (no rules in all tables, and all default policies set to ACCEPT). So, ...
6
votes
2answers
517 views

How to get external (public) IP in Delphi

I need to get my external (public) IP address from Delphi. How can I do that ? Winsock doesn't allow this.
6
votes
10answers
1k views

Is it possible to spoof your IP… is testing ip addresses secure?

I have some extra features on a site that employees can use but customers are not allowed to see. The employees are all going to be on a series of domains. What I do is get the user ip like so: ...
6
votes
3answers
893 views

php: ip2long returning negative val

function ip_address_to_number($IPaddress) { if(!$IPaddress) { return false; } else { $ips = split('\.',$IPaddress); return($ips[3] + $ips[2]*256 + $ips[1]*65536 + $ips[0]*16777216); } } ...
6
votes
3answers
185 views

Relation between port and IP address

My question is, if machine A have two IP address X,Y. Can it open port 80 twice,like X:80 and Y:80 ? Say,is port unique by machine or by IP?
6
votes
4answers
283 views

Converting an IP address to a number:

Question: When I convert the IP address 192.168.115.67 to a number, is it done like this: 192*2563 + 168*2562+115*2561+67*2560 = 3232265027 or like this: 192*2560 + 168*2561+115*2562+67*2563 = ...
6
votes
5answers
746 views

compare two ip with C#

How I can compare two IP address? string ip1 = "123.123.123.123"; string ip2 = "124.124.124.124"; I need some like this: if(ip1 == ip2) { //true }
6
votes
3answers
2k views

Is there way to match IP with IP+CIDR straight from SELECT query?

Something like SELECT COUNT(*) AS c FROM BANS WHERE typeid=6 AND (SELECT ipaddr,cidr FROM BANS) MATCH AGAINST 'this_ip'; So you don't first fetch all records from DB and then match them one-by ...
6
votes
2answers
3k views

How do I make an outgoing socket to a SPECIFIC network interface?

I have a server with two different network interfaces, each with a different IP address. How can I create a socket so it'll go out a specific IP address? I'd prefer a python example, but the question ...
6
votes
2answers
2k views

Best tutorial for application multicasting?

I've recently become aware that there's a distinction between IP multicasting (which apparently doesn't work that well on the public internet) and application multicasting (which is apparently used in ...
6
votes
5answers
320 views

SAAS per seat authentication

Our company makes the web based application which is priced per workstation. That means that user/pass credentials should only be used from one particular machine. Currently what is happening that ...
5
votes
4answers
166 views

Python on Linux: get host name in /etc/hostname

From within a Python script I am trying to get the host name in a Linux box. It is a Debian GNU/Linux Amazon EC2 instance. I have set the correct name in /etc/hostname. The recommended solution ...
5
votes
4answers
136 views

Can Javascript know your IP? [closed]

Possible Duplicate: Get Client IP using just Javascript? I know PhP can know your IP from <?php echo $_SERVER['REMOTE_ADDR']; ?> How can javascript do so? Or is it true that because ...
5
votes
2answers
155 views

Generating organization IP address range data

I want to get the IP ranges of every college/campus I can. I found one site which seems to have a pretty reliable and comperhensive file of this sort: http://www.bluetack.co.uk/config/edu.gz I was ...
5
votes
1answer
898 views

Send Raw IP packet in C#, everything above the ethernet layer

I don't want to modify the ethernet portions of the frame, but I need to modify the IP packet and the data portion of the frame. I try sending a raw frame and it still puts in the IP information. I ...
5
votes
3answers
397 views

How do I get a website's ip address using Python 3.x?

I have a string representing a domain name. I would like to get its corresponding ip address using Python 3.x. Something like this: >>> get_ip('http://www.stackoverflow.com') '64.34.119.12' ...
5
votes
3answers
1k views

Calculate whether an ip is in a specified range in java

Is there any libraries out there that can help with calculation if ip ranges? I want to be able to return true/false depending on an ip being in range of two other ip's. For instance: ip ...
5
votes
1answer
748 views

Getting my public IP via API

Is there a public API from some big company to get my public ip from within a program? I've found http://ip-address.domaintools.com/myip.xml, which is exactly what I want, but unfortunately it ...
5
votes
5answers
3k views

Converting CIDR address to subnet mask and network address

Given a CIDR address, e.g. 192.168.10.0/24 How to determine mask length? (24) How to determine mask address? (255.255.255.0) How to determine network address? (192.168.10.0)
5
votes
2answers
919 views

Obtaining a list of connected clients for a wcf service

How can I enumerate some sort of location identifier for all of the connected clients for a servicehost? I'm using a duplex connection for long running calculations. The Service host is a singleton. ...
5
votes
6answers
6k views

find the ip address of the client in an ssh session

I have a script that is to be run by a person that logs in to the server with ssh. Is there a way to find out automatically what ip is the user connecting from. Of course, I could ask the user (it ...
5
votes
2answers
4k views

Does anyone know a java component to check if IP address is from particular network/netmask?

I need to determine if given IP address is from some special network i must authenticate automatically.
4
votes
5answers
111 views

PHP - Block IPs for 24 hours

I have a PHP file that I want to collect people's IP's then prevent the PHP file from continuing if their IP has run the file within the last 24 hours. I've tried with cookies, but it kept giving me ...
4
votes
4answers
96 views

How to convert IPv4 to Integer using CoffeScript?

In CoffeeScript how would I go about converting an IP (standard IPv4 127.0.0.1) into an integer? EDIT: Lots of great answers here, thanks everyone!
4
votes
4answers
109 views

Best choice for in memory data structure for IP address filter in Java

I have file that is CIDR format like this 192.168.1.0/24 and it is converted into this two column strucutre 3232236030 3232235777 Each string IP address convertion happens with this code: String ...

1 2 3 4 5 22