What happens if you define a network you use a netmask of 0.0.0.0 ?
I don't think 0.0.0.0 is possible, considering there would be no broadcast/network address (just all hosts). But that is a good suggestion because I can do an address/bit count of 192.168.0.0/1 which will give me:
[ Network 128.0.0.0 ] [ Hosts: 128.0.0.1 - 255.255.255.254] [ Broadcast: 255.255.255.255 ]
or 10.0.0.0/1 which would give me:
[ Network 0.0.0.0 ] [ Hosts: 0.0.0.1 - 127.255.255.254] [ Broadcast: 127.255.255.255 ]
Pretty large broadcast domains, but it's partially solves my problem by allowing me to pick 1 subnet and allow any hosts in it. However, it is not a complete solution which is what I was hoping for. I just sort of want that built-in rule turned off, or a way to allow my custom rules to take priority over any other rules first.
But I might give one of the "big" subnets above a try; however, if anyone has a complete solution that would be awesome, please let me know

. Thanks