Options

Frame-Relay config - why is it not working?

rakemrakem Member Posts: 800
Ok im only doing this on a simulator but I cannot get the two DTE routers to talk to each other: Here is the setup:
lab.jpg

Lab_B is the frame-relay switch and has the following config:
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z
Router(config)#hostname lab_c
lab_c(config)#hostname lab_b
lab_b(config)#frame-relay switching
lab_b(config)#int s0/0
lab_b(config-if)#en
lab_b(config-if)#encapsulation frame-relay
lab_b(config-if)#int s0/1
lab_b(config-if)#encapsulation frame-relay
lab_b(config-if)#frame intf-type dce
lab_b(config-if)#frame-relay route 201 interface s0/0 102
lab_b(config-if)#clock rate 64000
lab_b(config-if)#int s0/0
lab_b(config-if)#frame intf-type dce
lab_b(config-if)#frame-relay route 102 interface serial0/1 201
lab_b(config-if)#clock rate 64000
lab_b(config-if)#
lab_b#write
Building configuration...
[OK]
lab_b#conf t
Enter configuration commands, one per line. End with CNTL/Z
lab_b(config)#int s0/1
lab_b(config-if)#no shut
11:00:04 %LINK-3-UPDOWN: Interface Serial0/1, changed state to up
11:00:04 %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/1, changed state to up
lab_b(config-if)#int s0/0
lab_b(config-if)#no shut
11:00:09 %LINK-3-UPDOWN: Interface Serial0/0, changed state to up
11:00:09 %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0, changed state to up
lab_b(config-if)#frame-relay lmi-type ansi
lab_b(config-if)#int s0/1
lab_b(config-if)#frame-relay lmi-type ansi
lab_b(config-if)#

LAB A Config:
Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z
Router(config)#hostname lab_a
lab_a(config)#int s0/1
lab_a(config-if)#en
lab_a(config-if)#encapsulation frame-relay
lab_a(config-if)#ip address 172.16.10.1 255.255.255.0
lab_a(config-if)#frame-relay interface-dlci 102
lab_a(config-if)#no shut
10:58:16 %LINK-3-UPDOWN: Interface Serial0/1, changed state to up
10:58:16 %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/1, changed state to up
lab_a(config-if)#
lab_a#write
Building configuration...
[OK]
lab_a#conf t
Enter configuration commands, one per line. End with CNTL/Z
lab_a(config)#int s0/1
lab_a(config-if)#frame-relay lmi-type ansi
lab_a(config-if)#

LAB C CONFIG
Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z
Router(config)#hostname lab_c
lab_c(config)#int s0/0
lab_c(config-if)#en
lab_c(config-if)#encapsulation frame-relay
lab_c(config-if)#ip address 172.16.10.2 255.255.255.0
lab_c(config-if)#frame-relay interface-dlci 201
lab_c(config-if)#no shut
10:59:32 %LINK-3-UPDOWN: Interface Serial0/0, changed state to up
10:59:32 %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0, changed state to up
lab_c(config-if)#frame-relay lmi-type ansi
lab_c(config-if)#
lab_c#

i cannot ping lab_a from lab_C or the other way round... is there anything wrong with my commands?? Maybe its a simulation problem... not sure.
CCIE# 38186
showroute.net

Comments

  • Options
    PhoenixDownPhoenixDown Member Posts: 9 ■□□□□□□□□□
    It looks like you may have your dlci values switched for lab_a and lab_c. Switch those and give it a try. You may also try removing the dlci lines altogether from lab_a and lab_c as it may autodetect them anyway (not sure what capabilities your simulator has though). I may be seeing things though drunken_smilie.gifdrunken_smilie.gif
    I'll take "Movies that start with the word Jaws" for $800.
  • Options
    darkuserdarkuser Member Posts: 620 ■■■□□□□□□□
    sh fram lmi
    sh fram pvc
    sh fram map
    rm -rf /
  • Options
    rakemrakem Member Posts: 800
    It looks like you may have your dlci values switched for lab_a and lab_c. Switch those and give it a try. You may also try removing the dlci lines altogether from lab_a and lab_c as it may autodetect them anyway (not sure what capabilities your simulator has though). I may be seeing things though drunken_smilie.gifdrunken_smilie.gif

    yep you were right just had the DLCI mixed up.

    thanks.
    CCIE# 38186
    showroute.net
Sign In or Register to comment.