Cisco – IP Address and Subnet Mask of Static Default Route

cisco

Again, I'm continuing a review of previous Cisco modules. In CCNA 2, Chapter 2.9.1.4, it states,

Discard Route

A common configuration in many networks is to have a static default route on the edge router forwarding packets to the ISP. The ISP router then has a static route pointing to the customer's network.

For example, Customer A has the network address of 172.16.0.0/16, which is subnetted into several /24 subnets. The edge router of Customer A has a static default route forwarding all other traffic to the ISP router:

ip route 0.0.0.0 0.0.0.0 serial 0/0/0

The ISP router has a static default route for forwarding traffic to Customer A's network:

ip route 172.16.0.0 255.255.0.0 serial 0/0/1

Is 172.16.0.0 255.255.0.0 really a static default route? I know it is a static route, but a static default route? I thought all static default routes had an IP and subnet mask of 0.0.0.0 0.0.0.0.

Best Answer

I think you're getting your verbiage off, but not wrong.

A common configuration in many networks is to have a static default route on the edge router forwarding packets to the ISP.

A LAN that has no other exits will have a default route (i.e. static route) that points all unknown traffic to the edge. Since routers match on the longest prefix matching the destination address, this is your gateway of last resort.

The ISP router then has a static route pointing to the customer's network.

An ISP will never have a default route pointing to a customer network. They will have a static route for the networks they service.

Is 172.16.0.0 255.255.0.0 really a static default route?

That is not a default route. You were right in your assumption below.

I thought all static default routes had an IP and subnet mask of 0.0.0.0 0.0.0.0.