Hi Everyone,
I'm about to hit my one year anniversary for my passing my CCENT. I've decided to go back and get my CCNA, so back to techexams.net I go..!!

I'm glad to see that you are still here.. It feels good getting my hands "dirty" again!
Today, I'm working on a hub-n-spoke frame-relay network.
PROBLEM: I can ping other routers on the network, but I can't ping myself.
R1: Can ping R2/R3, but not R1's ip address
R2: Can ping R1/R3, but not R2's ip address
R3: Can ping R1/R2, but not R3's ip address
Turning on "debug ip packet" on R1 while pinging R1's address shows...
*Apr 21 01:43:54.338: IP: tableid=0, s=172.12.123.1 (local), d=172.12.123.1 (Serial0/1/0), routed via RIB
*Apr 21 01:43:54.338: IP: s=172.12.123.1 (local), d=172.12.123.1 (Serial0/1/0),len 100, sending
*Apr 21 01:43:54.338: IP: s=172.12.123.1 (local), d=172.12.123.1 (Serial0/1/0),len 100, encapsulation failed.
I see that in the above error message it states "encapsulation failed". Hmm, you've got me... I must be looking right at it...
BTW, if you've made it this far, thank you for your time in taking a look at this. I really do appreciate it.
Your friend in Virginia,
Paul L.
Here's the configs...
FRS: (frame-relay router) 3620
=======================
FRS#show run
Building configuration...
Current configuration : 1714 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname FRS
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
ip subnet-zero
!
!
ip host r3 172.12.123.3
ip host r2 172.12.123.2
ip host r1 172.12.123.1
!
ip cef
frame-relay switching
!
!
interface Loopback0
ip address 4.4.4.4 255.255.255.255
!
interface Loopback21
no ip address
!
interface Loopback22
no ip address
!
interface Loopback23
no ip address
!
interface Serial0/0
no ip address
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
serial restart-delay 0
clock rate 56000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 122 interface Serial0/1 221
frame-relay route 123 interface Serial0/2 321
!
interface Serial0/1
no ip address
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
serial restart-delay 0
clock rate 56000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 221 interface Serial0/0 122
!
interface Serial0/2
no ip address
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
serial restart-delay 0
clock rate 56000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 321 interface Serial0/0 123
!
interface Serial0/3
no ip address
serial restart-delay 0
!
interface Ethernet1/0
no ip address
shutdown
half-duplex
!
interface TokenRing1/0
no ip address
shutdown
ring-speed 16
!
ip http server
ip classless
!
!
line con 0
exec-timeout 0 0
logging synchronous
line aux 0
line vty 0 4
login
!
!
end
R1: (the hub) 2801
==============
r1#show run
Building configuration...
Current configuration : 998 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname r1
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
!
resource policy
!
ip cef
!
!
voice-card 0
!
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/1/0
ip address 172.12.123.1 255.255.255.0
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
fair-queue
frame-relay map ip 172.12.123.2 122 broadcast
frame-relay map ip 172.12.123.3 123 broadcast
no frame-relay inverse-arp
!
interface Serial0/2/0
no ip address
!
!
!
no ip http server
no ip http secure-server
!
!
control-plane
!
line con 0
exec-timeout 0 0
logging synchronous
login
line aux 0
line vty 0 4
login
line vty 5 15
login
!
scheduler allocate 20000 1000
end
R2/R3: (spokes) 2600/2500
====================
r2#show run
Building configuration...
Current configuration : 946 bytes
!
version 12.1
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname r2
!
!
!
!
!
!
ip subnet-zero
no ip finger
!
!
!
!
interface Loopback0
ip address 2.2.2.2 255.255.255.0
!
interface Ethernet0/0
no ip address
shutdown
!
interface Serial0/0
no ip address
shutdown
no fair-queue
!
interface Serial0/1
no ip address
shutdown
!
interface Serial1/0
ip address 172.12.123.2 255.255.255.0
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
no fair-queue
frame-relay map ip 172.12.123.1 221 broadcast
frame-relay map ip 172.12.123.3 221 broadcast
!
interface Serial1/1
interface Serial1/1
!
interface Serial1/2
no ip address
!
interface Serial1/3
no ip address
!
ip classless
no ip http server
!
!
line con 0
exec-timeout 0 0
logging synchronous
transport input none
line aux 0
line vty 0 4
exec-timeout 0 0
logging synchronous
no login
!
end
Additional info...
FRS#show frame route
Input Intf Input Dlci Output Intf Output Dlci Status
Serial0/0 122 Serial0/1 221 active
Serial0/0 123 Serial0/2 321 active
Serial0/1 221 Serial0/0 122 active
Serial0/2 321 Serial0/0 123 active
Any suggestions would be GREATLY APPRECIATED!