how to set up a frame relay lab using 3 routers... the dirty...
who in the hell uses frame anymore...
take two routers and call me in the morning
here we go...
router1 will be our frame switch
frame commands per interface on frame switch... frame-relay intf-type dce is a precaution... look at the cables and you won't need those commands...
r1
interface Serial0/0
no ip address
encapsulation frame-relay
clock rate 64000
frame-relay intf-type dce
frame-relay route 102 interface Serial0/1 103
end
interface Serial0/1
no ip address
encapsulation frame-relay
clock rate 64000
frame-relay intf-type dce
frame-relay route 103 interface Serial0/0 102
end
on r2
interface Serial0/0
ip address 10.0.20.2 255.255.255.0
encapsulation frame-relay
frame-relay interface-dlci 102
frame-relay lmi-type ansi
end
on r3
interface Serial0/0
ip address 10.0.20.10 255.255.255.0
encapsulation frame-relay
frame-relay interface-dlci 103
frame-relay lmi-type ansi
end
the addresses on r2 and r3 have to be in the same subnet
the dlci's are the local dlci's on each router...
show frame route is your best friend r1 (frame switch)
r2620_01#sh frame route
Input Intf Input Dlci Output Intf Output Dlci Status
Serial0/0 102 Serial0/1 103 active
Serial0/1 103 Serial0/0 102 active
r2620_01#
r2620_01#sh frame lmi
LMI Statistics for interface Serial0/0 (Frame Relay DCE) LMI TYPE = ANSI
Invalid Unnumbered info 0 Invalid Prot Disc 0
Invalid dummy Call Ref 0 Invalid Msg Type 0
Invalid Status Message 0 Invalid Lock Shift 0
Invalid Information ID 0 Invalid Report IE Len 0
Invalid Report Request 0 Invalid Keep IE Len 0
Num Status Enq. Rcvd 2 Num Status msgs Sent 2
Num Update Status Sent 0 Num St Enq. Timeouts 0
LMI Statistics for interface Serial0/1 (Frame Relay DCE) LMI TYPE = ANSI
Invalid Unnumbered info 0 Invalid Prot Disc 0
Invalid dummy Call Ref 0 Invalid Msg Type 0
Invalid Status Message 0 Invalid Lock Shift 0
Invalid Information ID 0 Invalid Report IE Len 0
Invalid Report Request 0 Invalid Keep IE Len 0
Num Status Enq. Rcvd 3 Num Status msgs Sent 3
Num Update Status Sent 0 Num St Enq. Timeouts 0
r2620_01#
r2620_02#ping 10.0.20.10
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.20.10, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms
r2620_02#
r2620_02#sh fram lmi
LMI Statistics for interface Serial0/0 (Frame Relay DTE) LMI TYPE = ANSI
Invalid Unnumbered info 0 Invalid Prot Disc 0
Invalid dummy Call Ref 0 Invalid Msg Type 0
Invalid Status Message 0 Invalid Lock Shift 0
Invalid Information ID 0 Invalid Report IE Len 0
Invalid Report Request 0 Invalid Keep IE Len 0
Num Status Enq. Sent 806 Num Status msgs Rcvd 804
Num Update Status Rcvd 0 Num Status Timeouts 3
Last Full Status Req 00:00:55 Last Full Status Rcvd 00:00:55
r2620_02#
just like that... lose the ansi statement on one end and watch it drop...
No comments:
Post a Comment