Hello everyone! This is my first post here, so please be gentle 

. So I've been studying for my CCNA (ICDN 1 and 2 route) for about a little less than a week. I have my own lab set-up consisting of 3x1841, 2x2590 and 1x3550, and I'm running to an issue. So I have PC1 and PC2 connected to switch 1 which is a 2950 on ports fa0/1 and fa0/2 in VLAN 10 & 20 respectively. I'm using a subnet mask of 255.255.255.252. So Pc1 is 192.168.10.1 with a default gateway of 192.168.10.2 and PC 2 is 192.168.10.5 with default gateway 192.168.10.6. The switch is then connected to the router via trunking fa0/15 to the router on fa0/0. I then configured sub-interfaces fa0/0.10 and fa0/0.20 on the router using 192.168.10.2/30 and 192.168.10.4/30, both using dot1q. Now the problem is that both PC's can ping their default gateways. but fail to ping each other. I then enabled EIGRP, but the issue thet hosts still cannot ping each other. Heres the running config of the router:
Router3#sh run
Building configuration...
Current configuration : 1408 bytes
!
! Last configuration change at 06:48:08 UTC Sun Jul 19 2015
version 15.1
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
!
hostname Router3
!
boot-start-marker
boot-end-marker
!
!
enable secret 5 $1$YL6t$bZp3PuMBB9B3y.iG2MxH40
!
no aaa new-model
!
memory-size iomem 5
dot11 syslog
ip source-route
!
!
!
!
!
ip cef
ip domain name evan.local
no ipv6 cef
!
multilink bundle-name authenticated
!
crypto pki token default removal timeout 0
!
!
!
!
license udi pid CISCO1841 sn FTX145302LT
username evan password 7 000E1A1C1E5E07565E75
!
redundancy
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
 no ip address
 duplex auto
 speed auto
!
interface FastEthernet0/0.10
 encapsulation dot1Q 10
 ip address 192.168.10.2 255.255.255.252
!
interface FastEthernet0/0.20
 encapsulation dot1Q 20
 ip address 192.168.10.6 255.255.255.252
!
interface FastEthernet0/1
 no ip address
 shutdown
 duplex auto
 speed auto
!
interface Serial0/1/0
 no ip address
 shutdown
!
!
router eigrp 10
 network 192.168.10.0 0.0.0.3
 network 192.168.10.4 0.0.0.3
!
ip forward-protocol nd
no ip http server
no ip http secure-server
!
!
!
!
!
!
!
!
!
control-plane
!
!
!
line con 0
 logging synchronous
line aux 0
line vty 0 4
 logging synchronous
 login local
 transport input ssh
line vty 5 15
 logging synchronous
 login local
 transport input ssh
!
scheduler allocate 20000 1000
end
If anyone could help me out it would be much appreciated!