Hey guys... im just getting into BGP for the first time... i have set up the following lab in dynamips:

Im having issues with getting connectivity between the two AS'. Here is the config from routers 2, 3 and 4
R2
interface Serial1/0
ip address 192.168.1.2 255.255.255.252
serial restart-delay 0
!
interface Serial1/1
ip address 100.1.1.1 255.255.255.252
serial restart-delay 0
!
router ospf 10
log-adjacency-changes
network 100.1.1.0 0.0.0.3 area 0
network 192.168.1.0 0.0.0.3 area 0
!
router bgp 65100
no synchronization
bgp log-neighbor-changes
neighbor 100.1.1.2 remote-as 65300
no auto-summary
R3
interface Serial1/0
ip address 100.1.1.2 255.255.255.252
serial restart-delay 0
!
interface Serial1/1
ip address 200.1.1.1 255.255.255.252
serial restart-delay 0
!
router bgp 65300
no synchronization
bgp log-neighbor-changes
neighbor 100.1.1.1 remote-as 65100
neighbor 200.1.1.2 remote-as 65200
no auto-summary
R4
interface Serial1/0
ip address 200.1.1.2 255.255.255.252
serial restart-delay 0
!
interface Serial1/1
ip address 192.168.20.1 255.255.255.252
serial restart-delay 0
router ospf 20
log-adjacency-changes
network 192.168.20.0 0.0.0.3 area 0
network 200.1.1.0 0.0.0.3 area 0
!
router bgp 65200
no synchronization
bgp log-neighbor-changes
neighbor 200.1.1.1 remote-as 65300
no auto-summary
the routing table on R3 only has its directly connected routes... im obviously missing something here, as mentioned this is the first time i have looked at BGP.... any pointers from you learned people would be great!
until then i will do some research.