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?
3
votes
5answers
640 views
Remoting server auto-discovery. Broadcast or not?
I have a client/server application that communicates with .Net remoting. I need my clients to be able to find the server(s) on the network without requiring client-side configuration.
As far as I …
2
votes
4answers
537 views
Problems with SO_BINDTODEVICE Linux socket option
Hello network experts,
I have a pc with two network cards. One (eth0) is for LAN/internet and the other for UDP communication with one microcontroller (mc) device. The mc has an IP(192.168.7.2) and a …
2
votes
2answers
332 views
Stomp Broadcast with Rabbitmq and Python
Im trying to move a system from using morbid to rabbitmq, but I cannot seem to get the same broadcast behaviour morbid supplied by default. By broadcast I mean that when a message is added to the …
2
votes
3answers
689 views
UDP-Broadcast on all interfaces
On a Linux system with a wired and a wireless interface (e.g. 192.168.1.x and 192.168.2.x subnets) I want to send a UDP broadcast that goes out via ALL available interfaces (i.e. both through the …
1
vote
4answers
63 views
A good broadcast mechanism for inhouse .net applications to announce their location and version?
I would like to provide a large number of inhouse .net applications with a lightweight way to announce that they are being used. My goal is to keep track of which users might benefit from support …
1
vote
3answers
245 views
How to listen for broadcast packets on any port?
Using .NET, how can I listen to udp broadcast packets sent to .255 on any port without the need of binding to a specific port?
1
vote
2answers
229 views
Why do I receive twice the data sent over UDP broadcast?
Hello,
I have a problem with the code below. What it does is send the current date/time using UDP broadcast and listens to this message. My current use of this code is local, I use the Send and …
1
vote
2answers
531 views
receiving a broadcast message in c#
Guys i have tried a lot but somehow there seems to be some problem with the code to receive a datagram that is broadcast by a remote host.
So could someone please provide me with the code to receive a …
1
vote
5answers
1k views
Java on Linux: Listening to broadcast messages on a bound local address
I have a somewhat weird requirement to be able to listen to a number of network interfaces from Java on a Linux machine and determine if one of them receives UDP packets of a certain type. The output …
1
vote
2answers
979 views
Send UDP broadcast (255.255.255.255) from specific adapter (e.g. 192.168.101.1) only; on Windows
Solution for Windows XP or higher. Preferably in C# or else in C++.
We do not want to broadcast using a subnet directed broadcast (e.g. 192.168.101.255) since the device we are trying to contact is …
1
vote
4answers
2k views
Calculate broadcast address from ip and subnet mask
Hi
I want to calculate the broadcast address for e.g
-IP 192.168.3.1
-Subnet 255.255.255.0
=192.168.3.255
in C.
I know the way (doing fancy bitwise OR's between the inversed IP and Subnet), but my …
1
vote
3answers
313 views
UDP Broadcast on Multihomed Systems
I'm working on a project that discovers/configures remote devices using UDP broadcasts. These devices may not have IP addresses configured yet, at least no to match the network they are connected to. …
1
vote
2answers
711 views
.NET Options Stream Video Files as WebCam Image
I am interested in developing an application that will allow me to build a list of videos from xml (containing video title, duration, etc) and play that list as my webcam stream. Meaning, if I were to …
1
vote
3answers
691 views
UDP Broadcast or IP Multicast?
If you had to implement a network broadcast, would you use UDP broadcast or IP multicast in a new application? Why?
What are the benefits and drawbacks you encountered with either method? …
