Tagged Questions
The subnet tag has no wiki summary.
6
votes
2answers
1k views
Is there native .NET type for CIDR subnets?
It's simple enough to code up a class to store/validate something like 192.168.0.0/16, but I was curious if a native type for this already existed in .NET? I would imagine it would work a lot like ...
5
votes
5answers
1k views
Is IP address on the same subnet as the local machine (with IPv6 support)
Does anyone have some code that will determine if an IP address (IPv4 or IPv6) is on the same subnet as the machine running the application? I've seen numerous examples of code that does this with ...
4
votes
1answer
307 views
Calculating all addresses within a subnet…for IPv6
I have seen plenty of great C# examples which demonstrate how to convert IPv4 addresses provided in CIDR notation (e.g. 192.168.0.1/25) into their relevant ranges (192.168.0.1 - 192.168.0.126). My ...
4
votes
2answers
207 views
Restricting access via IP-ranges (PHP)
Basically, I aim to allow my user to specify an ip range for access to a test. So lets say these values are stored in my database:
from: 148.197.34.112
To: 148.197.34.255
Are there any functions of ...
4
votes
2answers
4k 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 given subnet?
If ...
4
votes
5answers
2k views
How to store IP address list in C# List to make it searchable for subnets too?
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 there is 1.2.3.4 entry so ...
4
votes
5answers
8k views
Calculate broadcast address from ip and subnet mask
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 ...
4
votes
4answers
3k views
IP Subnet Notation
I am taking an IT class that is a bit over my head, but trying hard to keep up.
On a lab to regarding network topology using port scanners, I am instructed to "to develop a network inventory and ...
3
votes
3answers
248 views
Identify machines behind a router uniquely based on ipaddress
Some background first. I have a .net client agent installed on each of the machines in the lan. They are interacting with my central server [website] also on the same lan.
It is important for my ...
3
votes
2answers
2k views
Using SQL to determine cidr value of a subnet mask
I'd like to find a way to do a SQL query that will calculate the cidr (bit representation) of a subnet mask stored in the database. So for example, I've got either 255.255.255.0 or its decimal value ...
2
votes
5answers
66 views
Calculating the number of bits in a Subnet Mask in C#
I have a task to complete in C#. I have a Subnet Mask: 255.255.128.0.
I need to find the number of bits in the Subnet Mask, which would be, in this case, 17.
However, I need to be able to do this in ...
2
votes
1answer
38 views
Host-device communication in terms of subnet mask and routing
Let's say I have host computer with two Ethernet adapters:
LAN adapter - connected to LAN, obtains IP address automatically.
Device adapter - with IP address 192.168.10.1, subnet mask 255.255.255.0.
...
2
votes
2answers
117 views
Test with Java if two IPs are in the same network
How can I test if two IPs are in the same network according to the subnet mask?
For example I have the IPs 1.2.3.4 and 1.2.4.3: Both are in the same network if the mask is 255.0.0.0 or 255.255.0.0 or ...
2
votes
1answer
78 views
How to query the subnet mask(s) using Mono on Linux?
In my application (admin web interface written in MVC3) running on open-embedded Linux I have to list all the TCP/IP settings. This includes IP-Adresse, Gateway and the subnet mask.
The following ...
2
votes
1answer
103 views
Optimal IP subnet matching
The following code appears to be the hottest spot in my program.
JAVA_OPTS=-Xprof output:
Compiled + native Method
5.7% 173 + 0 scala.collection.IndexedSeqOptimized$class.slice
...
2
votes
0answers
650 views
Android wifi tether and usb tether subnet connections
So I've successfully set up my phone, Samsung Nexus S rooted stock 2.3.4, to use USB tethering (Settings-Wireless and Networks->Tethering and Portable Hotspot->USB tethering) AND Portable Wifi hotspot ...
2
votes
1answer
365 views
WCF Discovery: Find dynamic endpoint in different subnet
I'm using dynamic endpoints to find WCF services. So far this works great. However, when the services are in a different subnet, they cannot be found anymore.
I do know the address of the server, but ...
2
votes
2answers
621 views
Converting subnet mask “/” notation to Cisco 0.0.0.0 standard
I've searched SO for help but could'nt find a answer to my question.
Situation: I need to convert a "/NN" subnet mask notation (think IPTABLES) to a 0.0.0.0 cisco notation.
NN are the number of "1" ...
2
votes
1answer
1k views
Calculate directed broadcast address given IP address and subnet in PowerShell
My goal is to calculate the directed broadcast address when given the IP and subnet mask of a host node. I know, sounds like homework. Once I reasoned through my task and boiled it down to this, I was ...
2
votes
2answers
729 views
python 3: ipaddr/netaddr modules
I have got to be doing something wrong here... I am at present trying to validate whether an ip is within a specific subnet utilizing a builtin module.
I am using activepython:
ActivePython ...
2
votes
1answer
175 views
IsInNet for ASP
First Post.
So I am working on a project due to some drawbacks to the abilities of a standard PAC file. Basically we need to route proxy rules based on the internal subnet of the requester. ...
2
votes
2answers
497 views
Pinging first available host in network subnets
I've written a small script in Python that pings all subnets of my school's wireless network and prints out the IP addresses and hostnames of computers that are connected to each subnet of the ...
2
votes
4answers
1k 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 process:
Ping these ...
2
votes
2answers
2k views
JavaScript: Is IP In One Of These Subnets?
So I have ~12600 subnets:
eg. 123.123.208.0/20
and an IP.
I can use a SQLite Database or an array or whatever
There was a similar question asked about a month ago, however I am not looking for ...
1
vote
1answer
78 views
How to calculate netmask from 2 ip adresses in Python
How can I calculate the subnetmask in Python if I have the first and the last ip adresses in a range?
I want the netmask as e.g. 255.255.255.0.
Thanks ;)
1
vote
2answers
38 views
Understanding of host route table
I have the host computer with Ethernet adapter configured by this way: IP address 192.170.100.10, subnet mask 255.255.255.0. There is also hardware device which works like IP server, configured as: ...
1
vote
1answer
50 views
CIDR Address Selection
I understand the general concept of CIDR and how the prefix and suffix bits work, and I generally understand that you can take an address say:
73.132.68.12/24
There are 24 prefix and 8 suffix bits. ...
1
vote
0answers
218 views
How to change gateway, subnet of a network adapter of a virtual Machine inside HyperV via WMI?
Helo all,
My Question is:
1. How to set Subnet Mask , DNS address and Gateway address of network adapter inside a virtual machine in hyper-v programatically via WMI and C#?
Note: I am successfully ...
1
vote
1answer
182 views
Oracle PL/SQL versions of INET6_ATON and NTOA functions?
Any have any good code for converting a IPv6 address string into an integer? Converting IPv4 seems to be fairly easy, with the one format. However, IPv6 has several different formats to show an ...
1
vote
0answers
256 views
How to have clients under multiple subnets by using OpenVPN?
I am using OpenVPN to set up a virtual network environment for testing.
Currently I have one router (192.168.1.1) and three machines (A, B ,C) connected to it, I wish to have each machine running ...
1
vote
1answer
338 views
problem calculating subnet mask
Question in some competition exam:
The subnet mask for a particular network is 255.255.31.0. Which of the following pairs of IP addressed could belong to this network?
1: 172.57.88.62 & ...
1
vote
2answers
172 views
Receiving local broadcast packet sent from a “supernet”
My question is for Linux, in C.
Say host A on subnet /16 is sending a broadcast UDP packet. (ie. by broadcasting to xxx.xxx.255.255)
Is there a way for host B on the sub-subnet with a subnet mask ...
1
vote
1answer
83 views
Using a non conventional subnet mask
A normal mask for example; 255.255.255.0
this gives us 1111 1111.1111 1111.1111 1111.0000 0000 binary where ones represent network id, and zeroes represent host id.
Would it be possible to use a ...
1
vote
1answer
200 views
communication between two subnet masks
this may be a silly question. i have created a subnet on my network of 10.55.0.0/21.
the network already had a subnet of 10.55.1.0/24.
My question is why can a /21 address communicate with a /24 ...
1
vote
2answers
128 views
HTML - make some pages only accessible through IntrAnet \ some SUBNET
i have certain pages in my website that i would like to only be accessed from the LAN which is within my organization... now those pages are a part of my website because they interact with the ...
1
vote
2answers
2k views
List IP all addresses in a subnet
I need to get all of the IP addresses contained in within a subnet and I'm trying to do it using http://ipnetwork.codeplex.com/.
For example the subnet 192.168.1.0/29 would have the following output:
...
1
vote
1answer
470 views
How do I get the IPv4 subnetmask on interface with both v4 and v6 address?
I have an InterfaceAddress that returns an ipv4 address (4 octets). However the network prefix length seems to be for the ipv6 address associated with the interface (it's returning as 128). How do I ...
1
vote
3answers
2k views
Given an IP address and subnetmask, how do I calculate the CIDR?
Ok I can't seem to figure this out: given the following:
IP address = 192.168.1.0
Subnetmask = 255.255.255.240
Using c#, how do I calculate the CIDR notation 192.168.1.0/28 ? Is there an easy way to ...
1
vote
2answers
258 views
How to calculate the AND operation of an IPaddress and a subnet mask in C?
I have an IPaddress and subnet mask, both in unsigned long; how can I AND both of these and check whether my incoming ipaddress (ip2) belongs to the same subnet or not?
like:
if (ip1 & subnet == ...
1
vote
3answers
782 views
Python 3: create a list of possible ip addresses from a CIDR notation
I have been handed the task of creating a function in python (3.1) that will take a CIDR notation and return the list of possible ip addresses. I have looked around python.org and found this:
...
1
vote
1answer
307 views
Connecting 2 different sub neted computers
How do I connect 2 different subnet’ed computers? For example sake let’s say the following:
192.168.1.92 connected to externally visible 222.251.155.20.
192.168.1.102 connected to externally visible ...
1
vote
3answers
2k 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.255.0 returns(it ...
1
vote
0answers
508 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.
1
vote
3answers
446 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 to match this subnet ...
1
vote
2answers
504 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?
1
vote
2answers
258 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 which should in theory ...
0
votes
1answer
20 views
Subnet entries in the routing table
I am looking into a routing table issue that is a bit perplexing. Consider the routing table below. I am curious how the subnet entries get added to this table. Primarily the destinations ...
0
votes
2answers
25 views
classless IP Subnetting
i want to do subnetting with the given ip address as follows
192.168.10.0/25
My requirement is i want 30 addresses per subnet.
what will be the nw address of subnet 0?
is it 192.168.10.0/27 or ...
0
votes
0answers
36 views
Using the 2^n-2 formula to calculate network and host IDs
I was wondering if someone could elaborate or explain clearly how the forumal 2^n -2 is used to calculate host and network IDs. It seems that the "-2" part is not always used.
Is it this straight ...
0
votes
0answers
23 views
Apache SubnetUtils for IP range
I am using apache SubnetUtils utility to check an IP address is in the range or not. But now I am having a problem with it. I have ranged IPs ( x.x.x.x/16 .. ) and also I have just IPs.
x.x.x.x, ...