3
votes
2answers
46 views
HttpContext IP Problem
Hi, 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), c …
0
votes
5answers
54 views
Private Network (as in IPv4) question
I am working on an embedded TCP/IP4 stack and HTTP/SNMP/SMTP stuff.
It functionally works but I want to make it work faster on LAN.
Because of the Nagle's Algorithm and the delayed …
1
vote
2answers
58 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 …
0
votes
1answer
77 views
How to support both IPv4 and IPv6 connections
Hello,
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 …
0
votes
2answers
56 views
how to force python httplib library to use only A requests
The problem is that urllib using httplib is querying fro AAAA records what i would like to avoid. Is there a nice way to do that?
>>> import socket
>>> socket.ge …
2
votes
2answers
76 views
What are the possible return values for $_SERVER[’REMOTE_ADDR’];?
In writing a login module, I want to log IP's as an additional measure for verifying who's on the other side is still the same person on the other side.
I'm using $_SERVER['REMOTE …
1
vote
3answers
129 views
How to check if someone connected via IPv6 / IPv4
Hi there,
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 IPv …
1
vote
1answer
144 views
C# server that supports IPv6 and IPv4 on the same port
Is it possible to have a Socket that listens and accepts both IPv6 and IPv4 clients? I used a IPv6 socket in C# hoping that it would automatically be backwards compatible but IPv4 …
1
vote
3answers
111 views
Resources to get started with IPv4/IPv6 basics and development
I'm looking for resources and book which one can use to get started with IPv4 and IPv6 network development. The most relevant book I've came up so far is "Unix Network Programming, …
1
vote
2answers
140 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 …
2
votes
5answers
915 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 by …
0
votes
1answer
177 views
Functions to manipulate IPv4 addresses in C#?
Given a IPv4 address in the form of a string (ex. "10.171.24.69") and a netmask (ex. "255.255.255.128" or "25" for number of bits in network part) I need to compute the broadcast a …
3
votes
1answer
297 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);
…
7
votes
7answers
4k 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?
0
votes
3answers
166 views
is ipv6 backward compatable with ipv4?
I've got a little udp example program written using ipv4. If I alter the code to ipv6 would I still be able to communicate with anyone using the listener with an ipv4 address? I wa …
