Pages

Sunday, December 28, 2014

INE-CCNP ROUTE-IP Routing Overview

Personal notes regarding Frame Relay

Each of the connection need to be manually mapped

R2 static route points to s0/0 will need additional DLCI mapping under the serial0/0 interface. Map each of the routes individually to work. Using the debug command will show the encapsulation failure.

*Mar  1 01:31:26.115: Serial0/0:Encaps failed--no map entry link 7(IP).

Commands

# show frame-relay map - equivalent to show arp
# show frame-relay pvc xxx
# debug frame-relay packet
# debug frame-relay detail

Topology

image

Frame Relay switching

image

Configurations

R1

!
frame-relay switching
!
interface Loopback0
ip address 1.1.1.1 255.255.255.255
!
interface Serial0/0
ip address 10.0.0.1 255.255.255.0
encapsulation frame-relay
clock rate 2000000
frame-relay map ip 10.0.0.2 103 broadcast
frame-relay map ip 10.0.0.3 103 broadcast
!
ip route 2.2.2.2 255.255.255.255 10.0.0.2
ip route 3.3.3.3 255.255.255.255 10.0.0.3

R2

!
frame-relay switching
!
interface Loopback0
ip address 2.2.2.2 255.255.255.255
!
interface Serial0/0
ip address 10.0.0.2 255.255.255.0
encapsulation frame-relay
clock rate 2000000
frame-relay map ip 1.1.1.1 203
frame-relay map ip 10.0.0.3 203 broadcast
frame-relay map ip 10.0.0.1 203
!
ip route 0.0.0.0 0.0.0.0 Serial0/0

R3

!
frame-relay switching
!
interface Loopback0
ip address 3.3.3.3 255.255.255.255
!
interface Serial0/1
ip address 10.0.0.3 255.255.255.0
encapsulation frame-relay
clock rate 2000000
frame-relay map ip 10.0.0.2 302 broadcast
frame-relay map ip 10.0.0.1 301 broadcast
!
ip route 1.1.1.1 255.255.255.255 10.0.0.1
ip route 2.2.2.2 255.255.255.255 10.0.0.2

No comments:

Post a Comment