The rules you've created do NOT represent the IP ranges you think based on the description. For example, 192.168.2.101/27 is NOT .101 thru .132. It's actually .96 thru .127. Same for the other rules.
For the IP range of 192.168.2.101 thru 192.168.2.228, you need rules based on the following CIDR notation.
Code:
192.168.2.101/32
192.168.2.102/31
192.168.2.104/29
192.168.2.112/28
192.168.2.128/26
192.168.2.192/27
192.168.2.224/30
192.168.2.228/32
This is why it's usually better to base your IP range on one that requires the fewest number of rules.
Code:
192.168.2.64/26 # 192.168.2.64 - 192.168.2.127
192.167.2.128/26 # 192.168.2.128 - 192.168.2.191
The above gives you 128 hosts, but you have to start w/ 192.168.2.64 and end w/ 192.168.2.191. If you insist on *your* IP range, then as I said, you have to use that long list above instead.