Why Disable Peer Neighbor Route
When configure PPP over Frame Relay, we may observe that there are 32bit host route in both PPP link router, along with one 24bit subnet route. So, what’s the purpose of host route in PPP link? The peer neighbor route is used to provide reachability when both ends of the PPP link are not on the same logical subnet, or IP unnumbered. For example, on Router A, the interface virtual-template 1 IP is 10.10.10.1/24, on Router B, the interface virtural-template 1 IP is 192.168.100.1/24. Then, when PPP Link is up, Router A can ping Router B by using different subnet IP address successfully. However, if two Virtual-Template interface are in the same subnet, then we don’t need host route generated. So, we can sfely disable by “no peer neighbor-route” command under Virtual-Template interface.
Before disable, the routing table are as following:
Router A:
C 10.10.24.0/24 is directly connected, Virtual-Access2
C 10.10.24.4/32 is directly connected, Virtual-Access2
Router B:
C 10.10.24.0/24 is directly connected, Virtual-Access2
C 10.10.24.2/32 is directly connected, Virtual-Access2
After diable peer neigbor route, the routing table are as following:
Router A:
C 10.10.24.0/24 is directly connected, Virtual-Access2
Router B:
C 10.10.24.0/24 is directly connected, Virtual-Access2
Also, recall that how router does when forward a packet.
- Router look up the destination IP address and search on routing table by longest-matching approach.
- Router do Layer3 to Layer2 map searching for Ethernet or Frame Relay to get layer2 address, either MAC or DLCI, but not for PPP.
- Router finally encapsulate the pacckage and send out the interface in the forwarding table.