Tagged Questions

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 ...
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
2answers
730 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 ...
1
vote
1answer
51 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
1answer
183 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
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
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: ...
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, ...
0
votes
1answer
40 views

How to get VLSM IP range from pool of assignable addresses a.b.c.d/x - e.f.g.h/y

If I have a pool of addressable IP's in 214.97.254/23, is it possible to assign addresses to 6 subnets that require: Subnet A - 250 interfaces, Subnet B - 120 interfaces, Subnet C - 120 interfaces, ...