Tagged Questions
IPv6 is the next generation Internet Protocol, as opposed to the currently common Internet Protocol known as IP or IPv4.
55
votes
2answers
13k views
Maximum length of the textual representation of an IPv6 address? [closed]
I want to store the data returned by $_SERVER["REMOTE_ADDR"] in PHP into a DB field, pretty simple task, really. The problem is that I can't find any proper information about the maximum length of the ...
34
votes
9answers
18k views
Is there a way for non-root processes to bind to “privileged” ports (<1024) on Linux?
It's very annoying to have this limitation on my development box, when there won't ever be any users other than me.
I'm aware of the standard workarounds, but none of them do exactly what I want:
...
21
votes
8answers
4k views
what does “dead beef” mean?
What does the word "dead beef" mean? I read it from a interview question. It has something to do with ipv6. I figured it could be a random hex number used for examples, like "The quick brown fox jumps ...
21
votes
6answers
11k views
How to store IPv6-compatible address in a relational database
How do I do that? Right now IPv6 will not be used, but I need to design the application in such a way as to make it IPv6-ready. It is necessary to store IP addresses and CIDR blocks (also BGP NLRI, ...
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
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 ...
12
votes
5answers
5k views
IPv6 and ports
How do ports (or their functional equivalent) work with IPv6?
Thanks! The Wikipedia article points out that the syntax of an IPv6 address includes colons and has a short form preventing ...
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 ...
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
2answers
406 views
How to read TENTATIVE flag of IPv6 Address?
I am assigning ipv6 address using ioctl() system call prgramtically.
I want to know if there is a way, i can find the assigned ip is tentative/duplicate ?
Thanks.
9
votes
3answers
11k views
How to convert an address from IPv4 to IPv6
Is this possible? How can you convert an ipv4 to an ipv6 address?
a few example from here:
0.0.0.0 -> ::
127.0.0.1 -> ::1
I'm searching a solution in Java.
Thanks,
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 ...
8
votes
1answer
193 views
Is it possible to use Twisted with IPv6?
I'm trying to add IPv6 support to an application written with Twisted, which unfortunately does not support IPv6. There's a three-year-old ticket for this in Twisted's trac, but it seems to be stuck ...
8
votes
3answers
232 views
When is the hybrid IP notation ::ffff:192.168.1.4 appropriate?
Put another way, if an address is IPv4, why bother to express it as IPv6 at all?
8
votes
2answers
247 views
IPv6 at programming level in windows
What is the difference between IPv6 and IPv4 at programming level in windows?
Can we just change IPv4 address to IPV6 and keep all other program same, will it work?
8
votes
3answers
987 views
Force python mechanize/urllib2 to only use A requests?
Here is a related question but I could not figure out how to apply the answer to mechanize/urllib2: ...
8
votes
6answers
4k views
Formatting IPv6 as an int in C# and storing it in SQL Server
Under IPv4 I have been parsing the string representation of IP addresses to Int32's and storing them as int's in SQL Server.
Now with IPv6 I'm trying to find out if there's a standard or accepted way ...
7
votes
2answers
162 views
How to listen on all IPV6 addresses using C sockets API
I maintain GPSD, a widely-deployed open-source service daemon that monitors GPSes and other geodetic sensors. It listens for client-application connections on port 2947 on both IPv4 and IPv6. For ...
7
votes
4answers
211 views
is there any code for bitwise and ipv6 address and network mask (prefix)?
I want to ask about calculation of ipv6 network and host side.
For example, I have the IPv6 address 2001:470:1f15:1bcd:34::41 and prefix 96.
Do you know a easy way to do bitwise and between IPv6 ...
7
votes
2answers
247 views
IPV6 address into compressed form in Java
I have used Inet6Address.getByName("2001:db8:0:0:0:0:2:1").toString() method to compress IPv6 address, and the output is 2001:db8:0:0:0:0:2:1 ,but i need 2001:db8::2:1 . , Basically the compression ...
7
votes
4answers
839 views
How to store a 128 bit number in a single column in MySQL?
I'm changing some tables to store IP addresses as numbers rather than strings. This is simple with IPv4 where the 32 bit address can fit into an integer column. However, an IPv6 address is 128 bits.
...
7
votes
4answers
1k views
What was the motivation for adding the IPV6_V6ONLY flag?
In IPv6 networking, the IPV6_V6ONLY flag is used to ensure that a socket will only use IPv6, and in particular that IPv4-to-IPv6 mapping won't be used for that socket. On many OS's, the IPV6_V6ONLY ...
7
votes
2answers
864 views
How do I enable IPv6 support in LWP?
The following code ...
my $user_agent = LWP::UserAgent->new;
my $request = HTTP::Request->new(GET => $url);
my $response = $user_agent->request($request);
if ($response->is_success) {
...
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
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 ...
7
votes
2answers
4k views
How to convert IPv6 from binary for storage in MySQL
I am trying to store IPv6 addresses in MySQL 5.0 in an efficient way. I have read the other questions related to this, such as this one. The author of that question eventually chose for two BIGINT ...
6
votes
1answer
179 views
Performance difference between urllib2 and asyncore
I have some questions about the performance of this simple python script:
import sys, urllib2, asyncore, socket, urlparse
from timeit import timeit
class HTTPClient(asyncore.dispatcher):
def ...
6
votes
2answers
171 views
Check if server is accessible via IPv6?
Is is possible to check if a server is accessible via IPv6 with c#?
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
8answers
5k views
IPv6 address validation and canonicalization
What libs have you used for that? How compatible are they with one another? Or did you write your own parsing routine?
I'm particularly interested in mutually-compatible implementations for Java, ...
6
votes
6answers
3k views
Transparent Proxy for IPv6 traffic under Linux
When maintaining networks, it is often an expedient thing to do to run a transparent proxy. By transparent proxy I mean a proxy that 'hijacks' outgoing connections and runs them through a local ...
5
votes
1answer
49 views
C# Directory.Exists ipv6 version
I am using Directory.Exists(uncPath) with a UNC path, now it fails if I use the standard IPv6 address. Is there code available which can take care of all formats of unc - ipv4/ipv6/machiname.
...
5
votes
2answers
912 views
IPv6 link-local address format
I am working on a project related to networking/compression. One of the machines is Windows Vista, which already has IPv6 configured.
When I try ipconfig, I see an address in the following format: ...
5
votes
1answer
389 views
URL Sniffing in Python
Does anyone know how to write a live data sniffer in Python which extracts the originating IP address and the full URL that was being accessed? I have looked at pulling data from urlsnarf however IPv6 ...
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
4answers
334 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
2answers
253 views
Definitive guide to understanding how to formulate an IPv6 address
For fun, I'd like to better understand the building blocks or elements that are within an IPv6 address.
Here are the basics, from my understanding:
IPv6 addresses are 128 bits long (written as 8 ...
5
votes
4answers
349 views
Absolute minimum every software developer must know about IPv6
Now that remaining IPv4 address space has dropped below 5% let's make list of things every software developer must know about IPv6, including maybe not so obvious new pitfalls, hybrid solutions, etc.
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
5answers
1k views
Is IP address on the same subnet as the local machine (with IPv6 support)
Does anyone have some code that will determine if an IP address (IPv4 or IPv6) is on the same subnet as the machine running the application? I've seen numerous examples of code that does this with ...
5
votes
2answers
665 views
Making an asp.net application IPv6 compliant
We have Windows 2003 Servers running SQL Server 2005 and .NET 3.5 [separately].
We have a basic ASP.NET app running on IIS 6.
What, if anything, do I need to do on the application end ...
5
votes
2answers
606 views
IPV6 link local multicasting
I'm trying to figure out how to do the equivalent of an IPV4 broadcast using IPV6.
I'm creating a non-blocking IPV6 UDP socket.
From the side broadcasting i'm literally just doing a sendto ...
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 ...
4
votes
1answer
69 views
IPv6 Readiness for Java Developers
ARIN recommends IPv6 readiness by January 2012 (3 days!!!). I was wondering what implications (if any) does this mean for Java developers or JEE server admins (GlassFish, Tomcat, etc.)?
I believe ...
4
votes
1answer
95 views
Adding support for IPv6 in IPv4 client/server apps - sin6_flowinfo and sin6_scope_id fields?
I work on implementing IPv6 support for several applications, but I wondered what are these 2 fields for. There are so few questions about this here so I'm not sure I got it right.
About scope ID ( ...
4
votes
2answers
143 views
Returning IPv6 addresses from DNS server in C#
I am facing some unusual problems migrating my application to work in IPv6 environments.
I'm using .NET remoting to connect to a remote service supplying a hostname. That hostname ...
4
votes
2answers
197 views
problem running hello world with tornado web server (Python 2.5,Win 7)
I am using Python 2.5 on Windows 7 (64bit).
I installed pycurl-7.15.5.1 (with win binaries) and tornado (using pip).
When I run the following hello world code:
import tornado.ioloop
import ...
4
votes
3answers
244 views
How do I validate the ICMPv6 checksum? (Why am do I keep getting a checksum of 0x3fff?)
I'm working on a Linux userspace program that receives IPv6 router advertisement packets. As part of RFC4861 I need to verify the ICMPv6 checksum. Based on my research, most of which refers to the ...
4
votes
1answer
308 views
Calculating all addresses within a subnet…for IPv6
I have seen plenty of great C# examples which demonstrate how to convert IPv4 addresses provided in CIDR notation (e.g. 192.168.0.1/25) into their relevant ranges (192.168.0.1 - 192.168.0.126). My ...