When I run the following code in Python 2.7 I get true for all of these checks.
from netaddr import *
testip = '192.168.2.5'
testnetwork = '192.168.3.0/23'
if testip in IPNetwork(testnetwork):
print "Logic Fail"
if IPAddress(testip) in IPNetwork(testnetwork):
print "Logic Fail"
if testip in IPSet([testnetwork]):
print "Logic Fail"
if IPAddress(testip) in IPSet([testnetwork]):
print "Logic Fail"
Output is:
Logic Fail
Logic Fail
Logic Fail
Logic Fail
That isn't a strange result, the CIDR you specified is what used to be called "supernetting", so:
Effectively covers
through
giving you around 512 possible addresses to work with /23 is the same as this network mask
which is where the 3 gets bumped back to 2
To help visualize, you can use an online subnet calculator like http://mxtoolbox.com/subnetcalculator.aspx