IPv4 is the "old style" IP protocol currently used in most circumstances.

learn more… | top users | synonyms

0
votes
0answers
17 views

How do I make JVM use the IPv4 stack in isolated scope?

I have an application that runs on JVM/Tomcat and the machine(s) that it runs on all have IPv6 stack enabled. I'm trying to make a request to another machine that only supports IPv4 and the JVM will ...
0
votes
0answers
21 views

How can I formulate the communication latency in TCP/IP? [closed]

I have difficulty in deriving a mathematical model/equation to estimate the round trip latency between two nodes communicating using TCP/IP. The nodes are exchanging data based on HTTP protocol. In ...
2
votes
2answers
53 views

Compare ipv4 addresses in ipv6 notation

On incoming connections via ipv4 the IPAddress is in ipv6 notation such as ::ffff:1.2.3.4 I want to compare these addresses to an IPAddress I get from elsewhere which is in ipv4 notation: 1.2.3.4 By ...
-3
votes
1answer
22 views

Mobile HotSpot:802.11 to Cellular data conversion [closed]

I am trying to understand the mobile hotspot technology (tethering). Specifically, I am interested in how the devices connected to a HotSpot (via Wi-Fi) access the internet via Cellular network. Here ...
0
votes
1answer
36 views

C - Linux - kernel module - TCP header

I'm trying to create linux kernel module, that will inspect incoming packets. At the moment, I'm in process of extracting TCP header of packet and reading source and destination port -> However I'm ...
0
votes
0answers
18 views

SOAP support in JBoss 4.23 with IPv4

Until recently, all our system services spoke with each other using IPv4. Lately, we've made a change and we can now speak with the other services using IPv6. This is true for all services except for ...
-1
votes
1answer
23 views

Current IPv4 blocks allocated to each country / city / organization [closed]

I would like to understand better the current ipv4 address space and need help finding data about the ip allocation for each country. If possible, going further for each city, ISP and organization. I ...
3
votes
1answer
67 views

Connecting IPv4 client to IPv6 server: connection refused

I am experimenting with IPv6 sockets, particularly the "dual stack" capability offered on Windows Vista and later, and apparently on Unix by default. I am finding that when I bind my server to a ...
0
votes
2answers
32 views

How to display my PC's IP Address on Windows (7) Startup?

I am on a work computer with dynamic IP address (Ipv4), which usually changes when I restart it. Since I sometimes need to use this PC through remote desktop connection at home I like to keep its IP ...
0
votes
0answers
14 views

Same ip allotted to guest host on virtual machine in both NAT n Bridge mode

I used Bridge adapter to connect my host machine to my Virtual machine. I used to access the php projects built in my virtual box os via the ip address of the guest machine. I restated my system and ...
0
votes
1answer
14 views

Discovering and RECONFIGURING devices on an IPv4 network

[Warning: network programming newbie here] We manufacture embedded devices that get connected to customers networks we know nothing about. They might or might not have DHCP enabled (but usually, they ...
0
votes
0answers
24 views

How sort in doctrine2 ipv4 address?

I have column ipv4 (in Oracle as VARCHAR2(16 BYTE)) and i need sort by this column in symfony2. In our old site we sorting from mysql by ORDER BY INET_ATON(ipv4) ASC. How i get this sorting in query ...
-6
votes
1answer
87 views

What layers does IPv6/IPv4 use when running on TCP/IP? [closed]

When using TCP/IP with IPV4, do servers perform checksum on the network-layer? When using TCP/IP with IPV4, do servers perform checksum on the transport-layer? When using TCP/IP with IPV6, do servers ...
2
votes
3answers
79 views

C++ winsock connection refused when connecting to IPv4 address

I'm programming a server/client system using winsock2 and it works great when I connect the client to the server name or the server IPv6 address. However, when I use the server IPv4 address I get ...
0
votes
1answer
44 views

What multicast mac addresses mean?

When boot up a Linux server, some multicast packets are sent out. The destination mac address is 33:33:00:00:00:02. I wonder if the multicast address is well known? Dose it have some special meaning? ...
-1
votes
2answers
42 views

Integer to ipv4 with winsock.h

I have a question concerning the use of union library winsock.h to convert the numbers to ipv4 address how to write? #ifdef obsolete union { struct { u_char ...
1
vote
1answer
83 views

Convert IPv6 address into an ASCII string in Internet standard dotted-decimal format

To convert IPv4 address into an ASCII string in Internet standard dotted-decimal format we use inet_ntoa function. What function shuold I use for IPv6?
0
votes
1answer
21 views

Limitation of IP_ADD_SOURCE_MEMBERSHIP on a Windows 2008 Server

I want to build an application which wants to recive data from several multicast groups (up to 1.000!) Is this possible with the setsockopt function (IP_ADD_SOURCE_MEMBERSHIP)? Or is there a system ...
0
votes
0answers
41 views

htaccess global ip address, ipv4, default gateway confusion

forgive the trivial question but I don't understand how to use ip addresses properly to deny access to my site. Let's say i have got the web site www.mywebsite.com. Suppose I have the following 3 ip ...
0
votes
0answers
40 views

netstat -s statistics meaning [closed]

If I use netstat -s command to get TCP/UDP statistics for IPv4/IPv6. and I get some mesures like Active Opens, Failed connexions, Segments received. To use these statistics I want to know how these ...
0
votes
1answer
165 views

AAAA DNS query on ipv4 interface

We use RH5.8 with ipv6 disabled. named(bind) service is in forward mode (cache enabled) options { directory "/var/named"; listen-on { 127.0.0.1; }; forwarders {10.10.12.1;}; forward ...
-2
votes
2answers
46 views

How to use GetTcpIPv4Statistics [closed]

I want to get TCP/UDP IPv4 statistics. I serached and I found GetTcpIPv4Statistics API. SO, how to use it to get TCP/UDP statistics in a c++ code ?
2
votes
2answers
57 views

how does one extract octets from an inet value in postgres sql?

I would like to convert an inet formatted IPv4 address into the integer components. For example, turn '101.255.30.40' into oct1=101, oct2=255, oct3=30, and oct4=40. There are regex expressions that ...
0
votes
1answer
32 views

How to directly deliver packets to the L4 layer in the NF_IP_PRE_ROUTING hook

I want to directly deliver some packets to the L4 layer when the packets get to the hook of NF_IP_PRE_ROUTING. I use the use ip_local_deliver() function. However, it does not work. May I know how I ...
1
vote
3answers
104 views

IPV4 vs. IPV6 PHP Function

I've been reading about how to determine whether an IP is IPv4 or IPv6 and it seems obvious to me that the thing to look for is whether there is a colon. However, then you have IPv4–mapped IPv6 ...
0
votes
1answer
66 views

Bind Socket Android

I have a problem on android. I have an application that asks the user for the local Ip address (from the device's interface) and another remote address. The application has to bind to the specified ...
2
votes
1answer
92 views

which dual stack server approach is better?

I wrote two server programs for a Dual stack before implementing in a application. Dual stack server program which can accept both IPv6 and IPv4 clients with a single IPv6 interface. But IPv4 reuest ...
4
votes
1answer
205 views

10 Second Delay Before Curl POST due to ipv6 (Ubuntu)

NOTE: I don't want to delete any of the history below, but where I thought this was a Heroku issue before, it is not. I think it is an issue with my local machine sending posts via curl and ruby ...
1
vote
1answer
288 views

Android p2p0 interface has ipv6 address

I downloaded OS Monitor app to inspect all network interfaces. I discover: on p2p0 interface, there is a default ipv6 address before any ad hoc (wifi direct) connection. The value is similar to ...
0
votes
0answers
192 views

client socket bound to ipv6 - communicate with both ipv4 and ipv6 - java

In my application , I would need to communicate with both IPv4 and IPv6 serves. I'm binding my client socket explicitly to an IPv6 address (not :: or ::0, a regular ipv6 address). 1) Will this socket ...
1
vote
1answer
192 views

how to get subnet from ip address in java

I get the ip(ipv4,such as 192.168.161.125),how can I get the subnet in which my pc is? java method and String format result is prefered. subnet is network which is calculated using ip address and ...
1
vote
0answers
82 views

Server bound to 0.0.0.0 “auto resolves” LAN address [closed]

I have a Linux server with two network cards running IPv4. The "outer" card is connected to the internet, the "inner" to my LAN. The server has a DynDNS domain name for the external address. I bind ...
0
votes
1answer
145 views

Get exact size of IPv6 header including the extenstion headers

If IPv4 is in question and I want to extract IP and ICMP header out of std::istream, first I get the initial 20 bytes, then check if the header lenght provided in the IPv4 header is larger than 20 ...
0
votes
1answer
77 views

How to get the IPv6 addreess according to the netmask prefix?

My IPv6 knowledge is very limited, could help me solve this question? As known, for IPv4, if the netmask is 25, the mapping address should be 255.255.255.128. Codes of arithmetic is like: public ...
0
votes
1answer
211 views

C# IPv4/IPv6 agnostic socket listener

I'm trying to to figure out how to create a protocol agnostic socket listener in C# - it should grab IPv4 and IPv6 requests. Everything I can find on Google seems to be C. Attempting something similar ...
1
vote
3answers
1k views

the windows phone emulator wasn't able to create the virtual machine

I just installed it on my windows 8. It's NOT running on a VM but is running at a macbook with bootcamp. When I try to emulate my app, I get this first error: But then I click "Retry" and give the ...
0
votes
0answers
128 views

java.net.InetSocketAddress and java.net.SocketAddress Support IPv6?

Do java.net.InetSocketAddress and java.net.SocketAddress support IPv6? Because the two classes that i have research and try it couldnt able me to view ipv6 connection it only able to view ipv4 ...
2
votes
5answers
368 views

Is network byte order pointless under IPv6?

If we use a 32-bit integer to store an IPv4 address, then the byte order of the integer must be considered. However, as there is no built-in 128-bit integer type under almost all platforms, an IPv6 ...
0
votes
0answers
64 views

Validate string as IP4 - WinAVR/GCC (AVR microcontroller; not Linux/Windows)

I have a string, that I'd like to validate as a proper IPv4 address. I've seen functions like inet_ntop() - but I believe that is for Linux. There were also some suggestions for winsock on Windows. ...
0
votes
1answer
608 views

Force InetAddress.getHostAddress() to return IPv4 address

I'm using a library that uses java.net.InetAddress.getLocalHost().getHostAddress() to get my local IP address. However, this always returns an IPv6 address on my computer (Gentoo Linux, JDK 1.6.0_37). ...
0
votes
1answer
160 views

Can not include “linux/in6.h” without errors on Ubuntu 12.10

I can not include the linux/in6.h header into my source code without getting these redefinition errors: In file included from mypmtud.cc:30:0: /usr/include/linux/in6.h:30:8: error: redefinition of ...
0
votes
3answers
252 views

Why doesn't routing table use physical address in place of IP address [closed]

Routing tables do not use physical address and instead use IP address. Once a router has found a path/rule matching for an IP datagram, it uses the next hop/destination IP address and changes it to ...
0
votes
0answers
85 views

Applets from a local HTTP server don't load

I am using Java7 SDK to compile my Java Applet Code. Same code was perfectly working with Java1.6 JDK and JRE1.6 update 37. But it stops working when I compile my code with Java7 SDK and on JRE 1.7 ...
0
votes
2answers
185 views

Decimal formatted IPV6 ip address or extract IPV4 from IPV6

Is there any JAVA or LINUX way to extract decimal formatted IPV6 ip address. Or Is there any JAVA or LINUX way to covert IPV6 ip to IPV4 format. Thanks. Dnyanesh.
1
vote
1answer
85 views

Can twisted.names.client be forced to return ipv4 addresses? (without modifying resolv.conf or ETH devices)

The problem I'm running into is that because IPv6 is enabled on my ethernet interface - so hostname resolution sometimes yields IPv6 results when I don't want them. Is it possible to get ...
0
votes
2answers
120 views

Is it possible to set getaddrinfo() to only retrieve IPV4 addresses by default?

Php curl uses getaddrinfo() to resolve hostnames to IP addresses. By setting an option it is easy to make it lookup IPV4 addresses but that will take quite some doing and will be quite difficult to ...
0
votes
0answers
55 views

Networking Multicast communication

I'm currently looking at a multicast packet being sent to the ipv4mcast address from a local machine. On wireshark, it is regarded as a standard query. A couple packets later, I see another packet ...
-1
votes
2answers
152 views

How to create a network with an IPv4 address /32 prefix? [closed]

I am new to the field of IT and am in need of some help with a network design assignment. The network I am designing needs to be able to hold 1008 hosts. I have two options: create a network with a ...
1
vote
0answers
94 views

Is there a “standard” C macro to convert IPv4 addresses from octet constants to integers? Something like a compile-time inet_aton()

I must be missing something very obvious. All I want is a simple C macro to convert an explicit constant IPv4 address in octet representation to an unsigned integer. Essentially a compile-time ...
2
votes
4answers
250 views

Testing if a network in cidr notation overlaps another network

I'm searching for a php algorithm that efficiently test if one cidr notated network overlaps another. Basically I have the following situation: Array of cidr adresses: $cidrNetworks = array( ...

1 2 3 4 5 6