Michael,
Your configuration is invalid. You can summarize the
advertisement of several subnets with a smaller mask (larger subnet), but the separate subnets must not overlap.
Using a /29 mask you can have 32 non overlaping subnets:
- 192.168.1.0/29
- 192.168.1.8/29
- 192.168.1.16/29
- 192.168.1.24/29
- .......
- 192.168.1.224/29
- 192.168.1.232/29
- 192.168.1.240/29
- 192.168.1.248/29
In your configuration subnets 192.168.1.0/24 and 192.168.1.32/29 overlap, which makes it impossible to determine if a computer using IP address 192.168.1.35 resides in the 192.168.1.0/24 subnet or in the 192.168.1.32/29 subnet.
What are you trying to accomplish with that?
Daniel