Hi i am having an issue where my R4 router can send a packet to R1 but then R1 just drops it, R1's routing table does not contain the IP for R4, but R2 and R3 do ? R1 caan not ping R4 but can ping the rest, i am ost :(.
I am trying to learn EIGRP and OSPF, i made some mistakes with my routes so i have them as defaults for now to try and find why this is not working.
I am using packet tracer, as i can't afford G3, i have attached my running configs below, can you help me solve why R1 and R4 won't ping each other please, honestly i have been stuck for weeks and i am getting behind, this CCNP is hard :(.

Here's the configs;
hostname R1
!
username ADMIN password cisco123
!
aaa new-model
!
aaa authentication login default local enable
aaa authentication login vty local
!
interface Loopback1
ip address 172.16.1.1 255.255.255.224
!
interface Loopback33
ip address 172.16.1.33 255.255.255.224
!
interface Loopback65
ip address 172.16.1.65 255.255.255.224
!
interface Loopback97
ip address 172.16.1.97 255.255.255.224
!
interface Serial0/0/0
bandwidth 64
ip address 192.168.12.1 255.255.255.252
ip hello-interval eigrp 56000 10
ip summary-address eigrp 56000 172.16.1.0 255.255.255.128 5
clock rate 64000
!
router eigrp 65000
eigrp router-id 1.1.1.1
passive-interface Loopback1
passive-interface Loopback33
passive-interface Loopback65
passive-interface Loopback97
network 0.0.0.0
no auto-summary
!
line con 0
exec-timeout 0 0
login authentication default
!
line vty 0
login authentication vty
!
ntp server 10.1.1.2 key 0
!
end
hostname R2
!
interface Loopback1
ip address 172.17.1.1 255.255.255.192
!
interface Loopback65
ip address 172.17.1.65 255.255.255.192
!
interface Loopback129
ip address 172.17.1.129 255.255.255.192
!
interface Loopback193
ip address 172.17.1.193 255.255.255.192
!
interface Serial0/0/0
bandwidth 64
ip address 192.168.12.2 255.255.255.252
ip hello-interval eigrp 56000 10
ip summary-address eigrp 56000 172.17.1.0 255.255.255.0 5
!
interface Serial0/0/1
bandwidth 64
ip ospf 65000 area 0
ip ospf hello-interval 5
ip ospf dead-interval 20
ip address 192.168.12.5 255.255.255.252
clock rate 64000
!
router eigrp 65000
eigrp router-id 2.2.2.2
redistribute ospf 65000 metric 10000 100 255 1 1500
passive-interface Loopback1
passive-interface Loopback65
passive-interface Loopback129
passive-interface Loopback193
network 0.0.0.0
no auto-summary
!
router ospf 65000
router-id 2.2.2.2
log-adjacency-changes
redistribute eigrp 65000 subnets
network 0.0.0.0 255.255.255.255 area 0
default-information originate
!
ntp server 10.1.1.2 key 0
!
end
hostname R3
!
interface Loopback0
ip address 172.18.1.1 255.255.255.0
ip ospf network point-to-point
!
interface GigabitEthernet0/0
ip ospf 65000 area 0
ip address 172.19.1.1 255.255.255.0
ip ospf hello-interval 5
ip ospf dead-interval 20
duplex auto
speed auto
!
interface Serial0/0/1
bandwidth 64
ip ospf hello-interval 5
ip ospf dead-interval 20
ip address 192.168.12.6 255.255.255.252
ip ospf 65000 area 0
!
router ospf 65000
router-id 3.3.3.3
log-adjacency-changes
network 0.0.0.0 255.255.255.255 area 0
default-information originate
!
ntp server 10.1.1.2 key 0
!
end
hostname R4
!
interface Loopback1
ip address 172.20.1.1 255.255.255.240
ip ospf network point-to-point
ip ospf 65000 area 1
!
interface Loopback17
ip address 172.20.1.17 255.255.255.240
ip ospf network point-to-point
ip ospf 65000 area 1
!
interface Loopback33
ip address 172.20.1.33 255.255.255.240
ip ospf network point-to-point
ip ospf 65000 area 1
!
interface Loopback49
ip address 172.20.1.49 255.255.255.240
ip ospf network point-to-point
ip ospf 65000 area 1
!
interface GigabitEthernet0/0
ip address 172.19.1.2 255.255.255.0
ip ospf hello-interval 5
ip ospf dead-interval 20
ip ospf priority 255
ip ospf 65000 area 0
duplex auto
speed auto
!
router ospf 65000
router-id 4.4.4.4
log-adjacency-changes
area 1 stub
network 0.0.0.0 255.255.255.255 area 0
default-information originate
!
ntp server 10.1.1.2 key 0
!
end