This blog was originally started to better help me understand the technologies in the CCIE R&S blueprint; after completing the R&S track I have decided to transition the blog into a technology blog.

CCIE #29033

This blog will continue to include questions, troubleshooting scenarios, and references to existing and new technologies but will grow to include a variety of different platforms and technologies. Currently I have created over 185 questions/answers in regards to the CCIE R&S track!! Note: answers are in the comment field or within "Read More" section.

You can also follow me on twitter @FE80CC1E


Thursday, October 7, 2010

Question 129

How can you configure a frame switch to route DLCI's without using the "frame-relay route" command?

1 comments:

Packets Analyzed said...

R2 is the frame switch

R1
__

interface Serial1/0
ip address 192.168.1.1 255.255.255.0
encapsulation frame-relay
serial restart-delay 0
no fair-queue
end

config#show frame map
Serial1/0 (up): ip 192.1.1.2 dlci 100(0x64,0x1840), dynamic,
broadcast,, status defined, active

config#ping 192.1.1.2

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.1.1.2, timeout is 2 seconds:
!!!!!


R3
__

interface Serial1/0
ip address 192.1.1.2 255.255.255.0
encapsulation frame-relay
serial restart-delay 0
no fair-queue
end

config#show frame map
Serial1/0 (up): ip 192.168.1.1 dlci 200(0xC8,0x3080), dynamic,
broadcast,, status defined, active

config#ping 192.168.1.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 292/351/372 ms

R2
__

interface Serial1/0
description Link-to-R1
no ip address
encapsulation frame-relay
serial restart-delay 0
clock rate 128000
frame-relay intf-type dce
end

interface Serial1/1
description Link-to-R3
no ip address
encapsulation frame-relay
serial restart-delay 0
clock rate 128000
frame-relay intf-type dce
end

config#sh run | include connect
connect FRAME Serial1/0 100 Serial1/1 200

FRAME - is any name you decide to give it.

config#show frame route (nothing here)
Input Intf Input Dlci Output Intf Output Dlci Status

config#sh connection all

ID Name Segment 1 Segment 2 State
========================================================================
1 FRAME Se1/0 100 Se1/1 200 UP

Post a Comment