Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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.
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 ...
15
votes
6answers
18k views

What is the largest Safe UDP Packet Size on the Internet

I've read a number of articles about UDP packet sizes but have been unable to come to a conclusion on whats correct. A number of services restrict the largest UDP packet to 512 bytes (like dns) ...
14
votes
4answers
3k views

Converting C++ TCP/IP applications from IPv4 to IPv6. Difficult? Worth the trouble?

Over the years I've developed a small mass of C++ server/client applications for Windows using WinSock (Routers, Web/Mail/FTP Servers, etc... etc...). I’m starting to think more and more of creating ...
11
votes
5answers
5k views

How do I choose a multicast address for my application's use?

How should I choose an IPv4 multicast address for my application's use? I may need more than one (a whole range perhaps ultimately) but just want to avoid conflicts with other applications. Packets ...
10
votes
4answers
4k views

How to support both IPv4 and IPv6 connections

I'm currently working on a UDP socket application and I need to build in support so that IPV4 and IPV6 connections can send packets to a server. I was hoping that someone could help me out and point ...
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
3answers
215 views

Change from IPv4 to IPv6: What are its effects on web development?

Do web developers need to be concerned by the end of IPv4? Or is this strictly a hosting level concern? What can the average PHP/JavaScript/Ajax etc. developer do to mitigate the impact of the ...
9
votes
3answers
8k views

Get IPv4 addresses from Dns.GetHostEntry()

I've got some code here that works great on IPv4 machines, but on our build server (an IPv6) it fails. In a nutshell: IPHostEntry ipHostEntry = Dns.GetHostEntry(string.Empty); The documentation ...
7
votes
7answers
3k views

Geolocation with IPv6?

I'm working on an IP geolocation library that uses the first three octets of an IPv4 address to determine a user's country, city, lat, lon, etc. Works like a charm. But it doesn't handle IPv6 ...
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 = ...
5
votes
2answers
653 views

Get destination address of a received UDP packet

Upon receiving a UDP packet, I need to respond to the sender with the address he used to send the packet to which I'm replying. The recvfrom call lets me get the address of the sender, but how do I ...
5
votes
4answers
333 views

Is there a standard .NET decoder for ipv4 and ipv6 addresses?

I'd like to write a fairly simple client-server network app. I only use a pure IPv4 network, but it would be nice to future-proof my code. I'll probably be using TcpListener/TcpClient, because ...
5
votes
3answers
2k views

Java application wanting to use both Inet4Address and Inet6Address at the same time

I have a Java application that needs to connect via sockets to two different servers on two separate machines. One server has been configured to listen on IPv4 connections, while the other has been ...
5
votes
2answers
3k views

IIS Request.UserHostAddress returning IPV6 (::1), even when IPV6 disabled

In the properties section of my network card, on windows server 2008, i have IPV6 disabled, leaving only IPV4 enabled. However in ASP.NET, Request.UserHostAddress returns '::1', an IPV6 address. Has ...
5
votes
1answer
2k views

ipv4.fiddler, how does it work?

I'm curious as to how fiddler is able to capture traffic when you use the URL ipv4.fiddler. Is ipv4 a special domain that resolves local and fiddler just registers with http.sys to proxy the call? ...
4
votes
1answer
50 views

Check whether an IP address is in a network

I am looking for a function to determine whether a given IPv4 address is in a given network. It will be similar to this; however, I do not want to install a complete framework or reinvent the wheel ...
4
votes
3answers
541 views

getaddrinfo and IPv6

I'm trying to understand what the getaddrinfo function returns : #include <stdlib.h> #include <sys/types.h> #include <unistd.h> #include <sys/socket.h> #include ...
4
votes
2answers
840 views

Representing IPv4/IPv6 addresses in Oracle

In Oracle, what is the appropriate data type or technique for representing network addresses, which addresses may be IPv4 or IPv6? Background: I'm converting a table recording network activity, ...
4
votes
3answers
296 views

Win32 sockets - Forcing ip packets to leave physical interfaces when sending to other local interfaces

Summary: I'm trying to create sockets to pass data between two physical interfaces that exist on the same machine, and Win32 sockets always forwards the traffic directly in the kernel instead of ...
4
votes
3answers
197 views

Will IPv6 help form-spammers?

A large (the major) part of developing a web application is to make it abuse-proof, more specifically spammer-proof. I've just noticed that today's spambots manage to request a form, fill it in, ...
4
votes
3answers
1k views

IPv6 to IPv4 inter-conversion in C#

I have a list of IP's in IPv4 format that i have collected from previous HttpRequest objects that my web-server received. I have a java applet which gives IP addresses in Ipv6 format(java applet ...
4
votes
1answer
2k views

REMOTE_ADDR and IPv6 in PHP

Is it safe to assume that $_SERVER['REMOTE_ADDR'] always returns a IPv4 address? Thanks!
4
votes
4answers
799 views

How can I generate a range of IP addresses in Perl?

I need to generate a list of IP-addresses (IPv4) in Perl. I have start and end addresses, for example 1.1.1.1 and 1.10.20.30. How can I print all the addresses inbetween?
4
votes
2answers
2k views

get local IPv4 of computer using VB.net

I'm trying to get the ip address of my local PC, and one one of my other PCs it gets the v4 address fine, but on this one the code: Dns.GetHostEntry(Dns.GetHostName).AddressList(0).ToString() ...
4
votes
4answers
2k views

How to check if someone connected via IPv6 / IPv4

I want to check via php if someone connects to my site via IPv4 or IPv6. The client address can be found in $_SERVER["REMOTE_ADDR"] but how to check if it's IPv4 or IPv6 ? Thank you for your time ...
3
votes
3answers
107 views

Fastest way of converting IPv6 dotted format string to colon format ? C#

What is the fastest way of converting the dotted format of the following IP from version 6 to colon format?? 128.91.45.157.220.40.101.10.10.1.252.87.22.200.31.255 I just typed the IP above ...
3
votes
3answers
833 views

Regular expression to validate InetSocketAddresses (ipv4/v6 + port addresses)

I am looking for tested regular expressions for both ipv4 and ipv6 InetSocketAddress (i.e., ip address + port number). I am not interested in validating hostnames. It can be two regex (one for ipv4, ...
3
votes
3answers
701 views

Get local network interface addresses using only proc?

How can I obtain the (IPv4) addresses for all network interfaces using only proc? After some extensive investigation I've discovered the following: ifconfig makes use of SIOCGIFADDR, which requires ...
3
votes
2answers
278 views

How to open a socket on a specific interface and receive both IPv4 and IPv6 traffic

With IPv4 I can bind() to a specific address to select the interface that will be used to receive the packets (and in some case, also to send, but that's not the point). On a dual stack IPv6/IPV4 ...
3
votes
1answer
321 views

Casting a primitive vs. trimming it byte-way

I would like to ask for opinions/advices regarding a a part of my algorithm. ByteBuffer bb = ByteBuffer.allocate(8); bb.putLong(rs.getLong(index));//retrieve long from db (unsigned INT) byte[] tmp = ...
3
votes
1answer
275 views

IPv6 lookup data structure

A patricia trie is the well-know, recommended data structure for storing IPv4 allocations/assignments and performing lookup. Is this true for IPv6 adddresses too? Just a deeper/taller trie to ...
3
votes
1answer
509 views

API for configuring static IP addresses in an android application

Is it possible to set the IP address of an interface in Android within an application? I can query the available interfaces and their current addresses using java.net.NetworkInterface, but this ...
3
votes
2answers
164 views

HttpContext IP Problem

I have a problem when I use HttpContext.Current.Request.UserHostAddress, some times returns "192.168.0.17" (IPv4) and some times returns "fe80::99be:a05d:7938:1c30%8" (IPv6), calling from the same ...
3
votes
2answers
3k views

IPv6 address ranges

Following on from this post I am interested in searching IPv6 address ranges. Under IPv4 I would be able to determine the start and end IP addresses provided by an ISP and using those integer values ...
2
votes
1answer
909 views

iPhone/iPad: How to get my IP address programmatically?

I would like to obtain my iPad's IP address programmatically. How can I query the networking subsystem to find out what my IPv4 (and IPv6) addresses are? Thanks. PS: Can I disable IPv6 somehow?
2
votes
6answers
194 views

How can I sort a list of IP-addresses in Perl?

I have a bunch of IP-addresses stored in an array, e.g.: my @ip = qw(10.11.1.1 10.100.1.1 ...); How can I sort the addresses in the ascending order? I've tried a simple sort but it failed, of ...
2
votes
6answers
155 views

how to get the next ip address from a given ip in java?

Folks, Am looking for a Java code snippet, which gives the next address from the given IP. so getNextIPV4Address("10.1.1.1") returns "10.1.1.2". String crunching can be done but might end up messy. ...
2
votes
1answer
470 views

List of possible internal socket statuses from /proc

I would like to know the possible values of st column in /proc/net/tcp. I think the st column equates to STATE column from netstat(8) or ss(8). I have managed to identify three codes: sl ...
2
votes
5answers
380 views

Redirect requests for external IP's to a local IP

Greetings. I am working on a project form my company. We have an application that was written by one of our old techs - he was fired for browsing pornography websites work. Unfortunately, he took the ...
2
votes
2answers
389 views

php cidr prefix to netmask

I'm looking to convert a cidr prefix (e.g. /28) to a netmask (e.g. 255.255.255.240) and have not located a function for this, does one exist in php? If not, how would I go about doing this?
2
votes
1answer
246 views

two bytes swapped in packet received from Python raw socket

My Python program is receiving ICMP destination unreachable messages from a raw socket. The socket is created with the following code: socket.socket(socket.AF_INET, socket.SOCK_RAW, ...
2
votes
2answers
416 views

Best ipv4 to ipv6 transition tutorial for Java coders?

Assuming one wants to migrate a Java application working on ipv4 to ipv6, what is the best 'from ipv4 to ipv6' tutorial available to help Java coders migrating their applications? I am looking for ...
2
votes
2answers
464 views

Where did IPv5 go?

Since we are all moving towards IPv6 whether we want it or not, I ask this: what happened to IPv5? Was it not cool enough for it's older brother, or did something else happen to that specification?
2
votes
1answer
345 views

IPv6 Address Ranging in C#

I'm writing a socket server that requires the ability to allow/restrict by IP and I'm trying to make it compatible with both IPv4 and IPv6. I understand the IPv4 principle fairly well, for example I ...
2
votes
2answers
163 views

isIPv4LiteralAddress has false positive results?

When I try to check whether a string is an IPv4 address or not, I found out that the function gives the following results. 144.122.1 --> true 144.122.1.a -->false 144.122.1.333 -->false Any idea ...
2
votes
3answers
248 views

PHP: Proper way to store IP in MySql and quickest way to search for IP throughout millions of rows

I'm storing IPv4 addresses in a "int unsigned" column type with inet_aton. [Am I doing this right? And is using "unsigned" necessary?] This particular column is indexed as well. Since there will be ...
2
votes
1answer
336 views

How to ensure that a server listens on IPv6 if possible and IPv4 otherwise?

I am trying to write a server application that listens to both IPv6 and IPv4 connections. The proper way to accomplish this seems to be listening on IPv6 address, which will also accept IPv4 ...
2
votes
3answers
1k views

Porting getifaddrs to Win XP

I'm trying to port a MacOSX app to windows and I've come up against a problem around getifaddrs. Basically windows does not support it. I'm trying to figure a way to re-implement it (for AF_INET and ...

1 2 3