configure outbound access list temporarily until you allocate them.
access-list # permit/deny PROTOCOL src mask dst mask
say you have 10.1.1.0 /25 (1-126)
access-list 101 deny ip 10.1.1.64 0.0.0.63 any log (block .64 - .126)
access-list 101 deny ip 10.1.1.32 0.0.0.31 any log (block .32 - 64)
the rest, you could let the other ones hang or be specific
access-list 101 deny ip host 10.1.1.26 any
access-list 101 deny ip host 10.1.1.27 any
access-list 101 deny ip host 10.1.1.28 any
access-list 101 deny ip host 10.1.1.29 any
access-list 101 deny ip host 10.1.1.31 any
access-list 101 permit ip 10.1.1.0 0.0.0.127 any
int WHATEVERYOUROUTSIDEIS
ip access-group 101 out
traffic is evaluated in the order of the acl chain, therefore the last entry will only also what hasn't already been denied........ (.1 - .25)
-gC-