1
vote
2answers
70 views
Proper way to scan a range of IP addresses
Given a range of IP addresses entered by a user (through various means), I want to identify which of these machines have software running that I can talk to.
Here's the basic proc …
0
votes
2answers
60 views
For UDP broadcast gurus: Problems achieving high-bandwidth audio UDP broadcast over WiFi (802.11N and 802.11G)
Hi,
I'm attempting to send multichannel audio over WiFi from one server to multiple client computers using UDP broadcast on a private network.
I'm using software called Pure Dat …
-1
votes
0answers
28 views
bandwidth limits of UDP broadcast over WiFi
I'm trying to achieve UDP broadcast of high-bandwidth data streams over WiFi on a simple, closed network, to multiple receivers.
I have successfully broadcast data streams to 2 co …
0
votes
0answers
22 views
Sub-net Routing [closed]
Applications hosted on servers located in the same subnet cannot reference domain names (VIP) hosted on the load balancer for the subnet.
Assumption: server A and server B are hos …
1
vote
2answers
57 views
Convert a subnet mask into binary (octets) in vb.net
How can I convert a subnetmask into binary, so I'll end up with 32 digits?
I can convert it into Binary, using Convert.ToString(Long-to-convert, 2)
But a subnetmask of 255.255.25 …
0
votes
1answer
45 views
how to detect number of subnets on a network automatically
Hi all,
is any way to detect the number of subnets which are on my network and how to find them out automatically?
Abdul Khaliq
2
votes
2answers
229 views
How to check if an IP address is within a particular subnet
I have a subnet in the format 10.132.0.0/20 and an IP address from the ASP.Net request object.
Is there a .NET framework function to check to see if the IP address is within the g …
1
vote
0answers
100 views
How to get local host address and subnet mask in Java ME?
Is there a way to find those values in ME (Either CDC or CLDC)? All the examples I found used SE methods.
3
votes
5answers
386 views
How to store IP address list in C# List to make it searchable for subnets too?
Hello,
how should I correctly store IP address list with addresses which are subnets to make it searchable?
There are two examples:
I have IP address 1.2.3.4 and in my C# List …
0
votes
0answers
162 views
Two routers on different subnets - will this configuration work? [closed]
Hi all. I'm hoping a network guru can help me out here. I have a network installation project at a client site and I've mentally mapped out how I plan to set it up.
They al …
0
votes
1answer
113 views
Number of hosts in a subnet
Does anyone know how many host bits are needed to guarantee that a subnet could have 9 usable hosts?
I was thinking about around 4, but I'm not sure. Can some shed some light on t …
1
vote
3answers
161 views
Deriving the Inverse of a subnet definition
An IP Subnet is defined with two parts, a network and a prefix-length or mask.
For example 192.168.0.0/16 (or, 192.168.0.0/255.255.0.0).
An IP address like 192.168.1.1 is said t …
1
vote
2answers
175 views
What .NET class should I use to represent a subnet and its mask?
I can use System.Net.IPAddress to represent a single IP Address, but what can I use to represent an entire subnet, including the network address and the subnet mask?
EDIT: add mis …
0
votes
1answer
50 views
Why does UnicastIPAddressInformation.IPv4Mask return null on an IPv4 Address?
The following is a section of code which builds a list of IP addresses and their subnet masks from the local system, however the Warn function seems to get triggered regularly whic …
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 …
