Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Still having issues with frame-relay lab 1

Status
Not open for further replies.

admoore

IS-IT--Management
May 17, 2002
224
0
0
US
I am still having issues with my frame-relay lab...

I have one router set as the FR switch and 3 other routers in a hub-and-spoke configuration. For now, I am not even concerned about split-horizon...

The frame route comes up OK on the FR SWITCH
The serial interfaces and LMI's come up fine...
The frame map on R1 shows both dlci's deleted...
Code:
2509_T-SERVE#show frame map
Serial0 (up): ip 172.12.123.2 dlci 122(0x7A,0x1CA0), static,
              broadcast,
              CISCO, status deleted
Serial0 (up): ip 172.12.123.3 dlci 123(0x7B,0x1CB0), static,
              broadcast,
              CISCO, status deleted
Here's R2:
Code:
C2610XM_R2#show frame map
Serial0/0 (up): ip 172.12.123.3 dlci 221(0xDD,0x34D0), static,
              broadcast,
              CISCO, status deleted
Serial0/0 (up): ip 172.12.123.1 dlci 221(0xDD,0x34D0), static,
              broadcast,
              CISCO, status deleted
I can't really see what I did wrong...
Any ideas appreciated...
All configs below:
Code:
x// OK on the FRAME SWITCH

enable
conf t
hostname FR_SW_HS
frame-relay switching
ip subnet-zero
no ip domain-lookup
line con 0
logging synch
exec-timeout 0 0 
int s1/0
no ip address
no ip directed-broadcast
encap frame-relay
logging event subif-link-status
logging event dlci-status-change
clockrate 56000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 122 interface Serial1/1 221
frame-relay route 123 interface Serial1/2 321 
no shut

int s1/1
no ip address
no ip directed-broadcast
encap frame-relay
logging event subif-link-status
logging event dlci-status-change
clockrate 56000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 221 interface Serial1/0 122
no shut
int s1/2
no ip address
no ip directed-broadcast
encap frame-relay
logging event subif-link-status
logging event dlci-status-change
clockrate 56000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 321 interface Serial1/0 123
no shut
end

// ON R1 (hub)
enable
conf t
int s0
encap frame
no frame inverse
int s0
ip address 172.12.123.1 255.255.255.0
frame map ip 172.12.123.2 122 b
frame map ip 172.12.123.3 123 b
int s0
no shut
end

// ON R2 (spoke)
enable
conf t
int s0/0
encap frame
no frame inverse
ip address 172.12.123.2 255.255.255.0
frame map ip 172.12.123.1 221 broadcast
frame map ip 172.12.123.3 221 broadcast
no shut
end

// ON R3 (spoke)
enable
conf t
int s0/0
encap frame
no frame inverse
ip address 172.12.123.3 255.255.255.0
frame map ip 172.12.123.1 321 broadcast
frame map ip 172.12.123.2 321 broadcast
no shut
end
 
Did you check your cables? Are they plugged in correctly?
 
Cables are fine and oriented properly.

Interfaces come up and line-protocol comes up- problem is with DLCI's/PVC's. I fear my config on the FR switch is wrong... As configuring the FR switch "cloud" itself isn't really part of the CCNA curriculum, I am a bit lost; but, still would like to be able to successfully complete this lab...

-A

 
It's official.

I am a bonehead. It in fact WAS a cabling issue after all. What I presumed was s1/0 was actually connected to s1/2 on the router acting as the switch...

Duh. My bad.

Thanks for pointing in the direction of the obvious! ;-)

-A
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top