How do I reach other parts of a subnetted old-style network when I have only partial routing information for that same old-style network?”
There are actually three ways to solve this particular problem with Cisco’s software. Which of them applies will depend on what software version is involved: • Preferred solution: turn on “ip classless” in your routers and use a default route inside your AS. The “ip classless” command prevents the existence of a single “subnet” route from blocking access via the default route to other subnets of the same old-style network. • Workaround for 9.1 or later software where the “ip classless” command is not available: install a “default network route” like this: “ip route 39.0.0.0 255.0.0.0 next-hop” along the axis your default route would normally take. • Workaround for 9.0 or older software: create a “default subnet route”: “ip route 39.x.y.0 next-hop” combined with “ip default-network 39.x.y.0”, otherwise as the 9.1 fix. Both of the latter solutions rely on static routes, and in the long run these will be impossible to maintain. In some topologies the use of static routes can be a problem