diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index 3f84a31b13..3235045817 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -5996,6 +5996,26 @@ function send_test_email( } +/** + * Check ip is valid into network + * + * @param string $ip Ip XXX.XXX.XXX.XXX. + * @param string $cidr Network XXX.XXX.XXX.XXX/XX. + * + * @return boolean + */ +function cidr_match($ip, $cidr) +{ + list($subnet, $mask) = explode('/', $cidr); + + if ((ip2long($ip) & ~((1 << (32 - $mask)) - 1) ) == ip2long($subnet)) { + return true; + } + + return false; +} + + /** * Microtime float number. *