Tagged Questions
The cidr tag has no wiki summary.
6
votes
3answers
2k views
Is there way to match IP with IP+CIDR straight from SELECT query?
Something like
SELECT COUNT(*) AS c FROM BANS WHERE typeid=6 AND (SELECT ipaddr,cidr FROM BANS) MATCH AGAINST 'this_ip';
So you don't first fetch all records from DB and then match them one-by ...
6
votes
3answers
3k views
matching an IP to a CIDR mask in php5?
I'm looking for quick/simple/(maybe built in that i never noticed before), method for matching a given IP4 dotted quad IP to a CIDR notation mask.
I have a bunch of IPs I need to see if they match a ...
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
3k views
Converting CIDR address to subnet mask and network address
Given a CIDR address, e.g. 192.168.10.0/24
How to determine mask length? (24)
How to determine mask address? (255.255.255.0)
How to determine network address? (192.168.10.0)
3
votes
4answers
172 views
Matching IPv6 address to a CIDR subnet
Is there a good way to match an IPv6 address to an IPv6 subnet using CIDR notation?
What I am looking for is the IPv6 equivalent to this:
matching an IP to a CIDR mask in php5?
The example given ...
3
votes
3answers
634 views
Getting list IPs from CIDR notation in PHP
Is there a way (or function/class) to get the list of IP addresses from a CIDR notation?
For example, I have 73.35.143.32/27 CIDR and want to get the list of all IP's in this notation. Any ...
3
votes
2answers
236 views
Python: List of addressable IP addresses
What's the most Pythonic way to create a list of the addressable IP addresses given a netaddr IPRange or netaddr IPNetwork.
If I use these, then it includes subnet and broadcast addresses:
hosts = ...
3
votes
5answers
5k views
How to convert CIDR to network and IP address range in C#?
I have been looking around quite a bit to find some C# code to convert a network in CIDR notation (72.20.10.0/24) to an IP address range, without much luck. There are some threads about CIDR on ...
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
388 views
php cidr prefix to netmask
I'm looking to convert a cidr prefix (e.g. /28) to a netmask (e.g. 255.255.255.240) and have not located a function for this, does one exist in php? If not, how would I go about doing this?
2
votes
2answers
673 views
Python Network/cidr Calculations
I am working on building an embedded network appliance (linux based) and have come across the need to dynamically build daemon conf files. As such, I need to be able to do some network address ...
2
votes
6answers
529 views
python regex CIDR matching
m = re.findall("\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}",s)
probably very easy question for somebody who knows regex, how do I modify it so it will match not only IPv4, but also something with CIDR like ...
2
votes
2answers
727 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
73 views
Postgres CIDR. How to select only network w/o subnet?
I have a table Net where is the list of networks
-- Table: net
CREATE TABLE net
(
id serial NOT NULL,
cidr cidr,
description text,
CONSTRAINT net_pkey PRIMARY KEY (id )
)
I need to select ...
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
1answer
174 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
1answer
90 views
Apache SubnetInfo for loopback address
Using the Apache Commons Net library, why does the following output 0 addresses for the CIDR notation 127.0.0.1/32 ? I'd have expected one, or am I misunderstanding something? Is the address 127.0.0.1 ...
1
vote
1answer
491 views
How to calculate IP ranges
Hi would someone be able to assist with the following question? The question is from a past paper in preparation for an exam.
Consider a router that interconnects three subnets: Subnet 1, Subnet ...
1
vote
1answer
320 views
How to get IP address list from CIDR notation in PHP? [closed]
Possible Duplicate:
Getting list IPs from CIDR notation in PHP
Hi there,
I need to generate the list of IP addresses from a CIDR notation.
For example, user has entered 200.41.132.11/28. ...
1
vote
2answers
156 views
subneting in cidr notation
I just have problem with subneting network address in CIDR notaion ,can anyone explain it for me?
for example how can I solve this question:
Give the subnet addresses in CIDR notation if the network ...
1
vote
1answer
394 views
Module, script or algorithm to convert IP range into a CIDR notation
How can I convert many IP ranges into a CIDR notation?
All I found is the ip2cidr service, but I have >200K IP-records.
1
vote
4answers
1k views
In Java, given an IP Address range, return the minimum list of CIDR blocks that covers the range
I am having trouble with some of the logic in converting an IP Address range into a list of CIDR blocks. I do believe that this website is doing it right: http://ip2cidr.com/
I would like to pass in ...
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
455 views
VB6 IP4 - Calculate Net Mask (Long) from Number of Bits
Given input of 0 to 32, representing the number of one-bits in an IP4 network mask (corresponding to a CIDR block size as in /19), what's
An elegant way to turn that into a four-byte long net mask
A ...
1
vote
3answers
779 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
4answers
25 views
How to trim CIDR notation off an IP?
I want to get rid of the CIDR notation and tried the following, but it doesn't seem to work like this:
<?php
$txt='156.67.0.0/16';
$re='(\\/)'.'(\\d+)';
$end = rtrim($txt,$re);
echo $end;
...
0
votes
0answers
20 views
What happens to the IP address block when you buy it from your ISP? [closed]
When you want to move the IP adressblock you have at your current ISP (say you are a huge organization) to another ISP, the previous ISP might now lose a block in the middle of its adress space.
Now ...
0
votes
0answers
21 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,
...
0
votes
1answer
91 views
How to calculate range of IP address given starting address and number of address required
Given a starting address, say 192.16.0.0, How do I calculate the IP address ranges to allocate 4000, 2000, 4000 and 8000 IP addresses to 4 companies that have requested it (in that order).
Address ...
0
votes
0answers
137 views
Python - convert list of IP CIDR strings to a human-readable glob
In netaddr module there are functions that convert either an ip range (iprange_to_globs(start, end)), or a CIDR (cidr_to_glob(cidr)) to a glob. A glob is a "user friendly form of specifying IP ...
0
votes
2answers
166 views
List of IP addresses in Python to a list of CIDR
How do I convert a list of IP addresses to a list of CIDRs? Google's ipaddr-py library has a method called summarize_address_range(first, last) that converts two IP addresses (start & finish) to ...
0
votes
2answers
255 views
Setting CIDR/IP so anyone can access it from any IP?
How do you set you CIDR/IP so anyone can access it from anywhere?
I'm trying to make my AWS RDS DB instance accessible from anywhere as my ISP doesn't give me a static IP. Everytime my IP changes I ...