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...
Here's R2:
I can't really see what I did wrong...
Any ideas appreciated...
All configs below:
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
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
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