Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
569 views

Binding an IP address just works for the first time

I want to make a web request from one of available IP addresses on server so I use this class: public class UseIP { public string IP { get; private set; } public UseIP(string IP) { ...
3
votes
2answers
449 views

How to receive multicast data on a multihomed server's non-default interface

I have a linux server with two NICs (eth0 and eth1), and have set eth0 as default in "ip route." Now I would like to receive multicast packets on eth1. I have added "224.0.20.0/24 dev eth1 proto ...
2
votes
0answers
61 views

Choosing the interface in multi-homed hosts

When programming through sockets in C, one can automatically get information about their interfaces through the getaddrinfo function by invoking it with the node as NULL and the AI_PASSIVE flag in ...
2
votes
2answers
1k views

Receiving Multicast Messages on a Multihomed Windows PC

I'm developing a diagnostic tool on a PC with several Network Interfaces based on multicast/udp. The user can select a NIC, the application creates sockets, binds them to this NIC and adds them to the ...
1
vote
3answers
804 views

SCTP Multihoming

I've been developing this simple client - server application with C where the client is just sending random data to the server and the server just listens to what the client sends. The protocol I'm ...
1
vote
0answers
168 views

using winhttp to connect to a multihomed host when the first ip is bad

im trying to confirm that the feature described here: http://msdn.microsoft.com/en-us/library/aa384066(VS.85).aspx WINHTTP_OPTION_CONNECT_RETRIES Sets or retrieves an unsigned long integer ...
1
vote
4answers
1k views

How to use multicast on a multi-homed system (Java, Linux)

This is in Java, but I can always revert to C via JNI if needed. I have a system with two NICs, each connected to a distinct subnet. I want to use multicast (in particular, SDP) to discover other ...
1
vote
2answers
713 views

Does a UDP service have to respond from the connected IP address?

Pyzor uses UDP/IP as the communication protocol. We recently switched the public server to a new machine, and started getting reports of many timeouts. I discovered that I could fix the problem if I ...
1
vote
3answers
576 views

Problem Trying to unicast packets to available networks

Trying to unicast packets to available networks. There are totally 3 networks. Managed to get packets in only one network.But i am not able to receive the packets in different networks. using this ...
1
vote
2answers
3k views

Broadcasting UDP message to all the available network cards

I need to send a UDP message to specific IP and Port. Since there are 3 network cards, 10.1.x.x 10.2.x.x 10.4.x.x when i send a UDP message,i am receiving the message only in one network ...
0
votes
1answer
69 views

Poor UDP broadcast performance to multiple processes on same PC

We have an application that broadcasts data using UDP from a server system to client applications running on multiple Windows XP PC's. This is on a LAN, typically Gigabit. This has been running fine ...
0
votes
1answer
36 views

Getting the IP of the interface that received a recvfrom() UDP packet (Microsoft)

Using recvfrom() on a socket bound to INADDR_ANY on a Microsoft multihomed PC. when recvfrom() gets an UDP packet: how can I find the Interface (IP) that received the packet?
0
votes
0answers
136 views

Enable both ppp0 and wlan0 on Honeycomb

I am using an xoom tablet with honeycomb as an experiment platform. I need to enable both wifi and 3/4G connection at the same time to enable fast swaps between them. However, it seems that enabling ...