Tagged Questions

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 ...
3
votes
4answers
174 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
635 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 ...
2
votes
2answers
389 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
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. ...
0
votes
4answers
26 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; ...