0
votes
1answer
115 views

calculate IP range using PHP and CIDR

I've seen various questions and answers around this site and I'm still having difficulty wrapping my head around this problem (could be because I've got a cold). Regardless, I'm trying to come up with ...
2
votes
4answers
300 views

Testing if a network in cidr notation overlaps another network

I'm searching for a php algorithm that efficiently test if one cidr notated network overlaps another. Basically I have the following situation: Array of cidr adresses: $cidrNetworks = array( ...
16
votes
5answers
632 views

CIDR bitwise operations - could I be a bit wiser?

I am building a class to represent an IPv4 subnet. I am storing the network address and the subnet mask as 4 byte binary strings, which are built during the constructor based on the arguments. One of ...
-1
votes
1answer
205 views

Converting netmasks php

How can I convert a netmask to a specific netmask. Example: 127.0.0.0/16 Convert to /24 netmask. It should output something like: 127.0.0.0/24 127.0.1.0/24 127.0.2.0/24 127.0.2.0/24 etc. all the ...
2
votes
3answers
847 views

PHP5 calculate IPv6 range from cidr prefix?

I am able to do this with IPv4 using code snippets from various online sources. I was wondering if there was a way to do it with IPv6. Basically I just need a form that I can enter an IPv6 address ...
0
votes
4answers
130 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; ...
3
votes
4answers
2k 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
2answers
2k 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?
1
vote
1answer
698 views

How to get IP address list from CIDR notation in PHP? [duplicate]

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. ...
4
votes
4answers
2k 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 ...
13
votes
7answers
8k 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 ...