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


Wednesday, October 6, 2010

Question 128

How do you configure a frame switch with dlci 101 on serial 1/0 and dlci 102 on serial 1/1?

1 comments:

Packets Analyzed said...

config#frame-relay switching (enable frame-relay switching)

config#interface Serial1/0
config-if#no ip address
config-if#encapsulation frame-relay
config-if#clock rate 128000
config-if#frame-relay intf-type dce
config-if#frame-relay route 101 interface Serial1/1 102 (traffic coming in serial 1/0 with dlci 101 will be routed out serial 1/1 using dlci 102)
!
config#interface Serial1/1
config-if#no ip address
config-if#encapsulation frame-relay
config-if#serial restart-delay 0
config-if#clock rate 128000
config-if#frame-relay intf-type dce
config-if#frame-relay route 102 interface Serial1/0 101 (traffic coming in serial 1/1 with dlci 102 will be routed out serial 1/0 using dlci 101)

Post a Comment