2
votes
1answer
175 views

Convert wildcard subnet to smallest cidr subnet list

I need to convert wildcard subnets to smallest cidr subnet list. For example: 1.2.3.4/255.0.255.0 converted to 1.0.3.0/24 1.1.3.0/24 1.2.3.0/24 1.3.3.0/24 ... 1.254.3.0/24 1.255.3.0/24 Above ...
0
votes
1answer
303 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, ...
2
votes
1answer
170 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. ...
2
votes
1answer
848 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 ...
3
votes
2answers
5k 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 IPnetwork For example the subnet 192.168.1.0/29 would have the following output: // Output ...
2
votes
2answers
2k 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
3answers
2k 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: ...
8
votes
2answers
2k 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 ...
7
votes
2answers
3k 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 ...