ok, so I have a couple of simple questions for you experienced guys here. My lab consists of 3 x 2524 routers. R1's s0 link is DLCI = 100 connected to R2's S0 int (R2 is in the middle and I'm going to configure both it's serial ports as DCE as I assume it's customary practice). R3 is at the other end connected from its own s0 port to R2's s1 port (that's DLCI 200). My question is simple; are the following commands correct and the best way to go about setting up frame relay?
R1:
conf t
int s0
encapsulation frame-relay
ip address 172.16.10.10 255.255.255.0
frame-relay interface-type dlci 100
exit
R2:
conf t
frame-relay switching
exit
conf t
int s0
encapsulation frame-relay
clock rate 64000
frame intf-type dce
frame-relay route 100 int s1 200
exit
conf t
int s1
encapsulation frame-relay
clock rate 64000
frame intf-type dce
frame-relay route 200 int s0 100
exit
R3:
conf t
int s0
encapsulation frame-relay
ip address 172.16.20.20 255.255.255.0
frame-relay interface-type dlci 200
exit
And if that's all correct, what would you guys recommend to check/troubleshoot it, a show frame map or show frame lmi or something else?