search the web

Sunday, October 18, 2015

Configuring Multipoint Frame Relay Scenario

Configuring Multipoint Frame Relay Scenario


COnfiguring FRAME-RELAY Switch.
-------------------------------------------
BB(configuring BB as FR switch)
conf t
frame-relay switching
!we enable frame-relay switching

int s1/1
no ip address
encapsulation frame-relay
!enables frame-relay encapsulation on this interface
frame-relay lmi-type cisco
!enables the signaling lanuage as cisco on this interface
frame-relay intf-type dce
!tells the device that the interface type connected is dce
clock rate 64000

!now we are creating virtual circuit
frame-relay route 102 interface s1/2 201
!we create a virtual circuit 102 with a destination of interface s1/2 and destination dlci 201
frame-relay route 103 interface s1/3 301
exit
interface s1/2
encapsulation frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
clock rate 64000
frame-relay route 201 int s1/1 102
no shut
exit

interface s1/3
encapsulation frame-relay
frame-relay lmi-type cisco
frame-relay intf type dce
clock rate 64000
frame-relay route 301 int s1/1 103
no shut
exit

----------------------------------------------------
R1
----------------------------------------------------
conf t
int s0
encapsulation frame-relay
frame-relay lmit-type cisco
ip address 192.168.1.1 255.255.255.0
no shut
frame-relay map 192.168.1.2 102 broadcast
!means that map the remote ip 192.168.1.2 with the local dlci 102 and also enable broadcast on it so that it forwards the broadcast or multicast traffic of the routing protcols
frame-relay map ip 192.168.1.3 103 broadcast
exit


--------------------------------------------------------
R2
--------------------------------------------------------
conf t
int s0
encapsulation frame-relay
frame-relay lmi-type cisco
ip address 192.168.1.2 255.255.255.0
frame-relay map 192.168.1.1 201 broadcast
frame-relay map 192.168.1.3 201 broadcast
!we mapped the ip address of 192.168.1.3 through 201 dlci which is local to us
no shut
exit

-------------------------------------------------------
R3
-------------------------------------------------------
conf t
int s0/0
encap frame-relay
frame-relay lmi-type cisco
ip address 192.168.1.3 255.255.255.0
frame-relay map ip 192.168.1.1 301 broadcast
frame-relay map ip 192.168.1.2 301 broadcast
exit
exit

show frame-relay map
!see the whether the mappings are active or inactive, shows details about mappings

show frame-relay lmi
!shows the details about frame-relay lmi, signaling statistics. check the messages sent and messages recieved, they must be equal to each other. Also check if there is lmi mismatch, check the timeouts.

SPLIT HORIZON PROBLEM
on router 1
conf t
int s0
no ip split-horizon eigrp 10
exit


for initial configuration of Router, switch or AP visit link below
initial configuration of Router, Switch or AP

No comments: