Tagged Questions

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 ...
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
170 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 ...
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
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
393 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 ...
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
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 ...