yii-debug-toolbar icon indicating copy to clipboard operation
yii-debug-toolbar copied to clipboard

ipFilter for wildcard IPv6 addresses not working

Open kmindi opened this issue 12 years ago • 0 comments

I would like to add a wild card for ipv6 addresses like this:

::ffff:192.168.0.*

This is needed because my nginx server returns ip addresses in that format.

The rule

// IPv6
            else if ($ip === $filter)
            {
                return true;
            }

does not allow wildcards

kmindi avatar Sep 22 '12 09:09 kmindi