Ok, I am trying to connect to the internet as follows:
Will post image of setup once moved to my other pc.
EDIT: DONE

I am trying to connect to the internet from PC1, via R3, R2, R1 and the rubbish Safecom ADSL router.
Problem is that I can ping outside addresses from R1, which I am guessing is because the ADSL router can forward the packets to R1's e0 interface because it is just seen as a host on the same network.
However, trying to ping an internet side IP from any of the other routers or hosts, it times out and a traceroute stops at the ADSL router. I have tried putting in static routes in the ADSL router, but they don't seem to do anything. The Safecom does not support any routing protocols, just static routing (from the user manual, it looks like it has to have an entry per host, not per network).
Here are the configs:
R1:
Current configuration : 714 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname R1
!
enable secret 5 $1$6PKp$94mQAsa5ajeaS1dsPzchw/
!
ip subnet-zero
no ip domain-lookup
ip host R2 172.16.10.2
ip host R3 172.16.20.1
!
!
!
!
!
interface Ethernet0
ip address 192.168.123.1 255.255.255.0
!
interface Serial0
ip address 172.16.10.1 255.255.255.0
clock rate 72000
!
interface Serial1
no ip address
shutdown
!
interface BRI0
no ip address
encapsulation hdlc
shutdown
!
router rip
version 2
network 172.16.0.0
network 192.168.123.0
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.123.254
ip http server
!
!
line con 0
line aux 0
line vty 0 4
password cisco
login
!
end
R2
Current configuration:
!
version 11.2
no service password-encryption
no service udp-small-servers
no service tcp-small-servers
!
hostname R2
!
enable secret 5 $1$poL1$5u1Jk6aXroPlj0.1o8srN0
!
no ip domain-lookup
ip host R1 172.16.10.1
ip host R3 172.16.20.1
!
interface Ethernet0
ip address 192.168.0.1 255.255.255.0
!
interface Serial0
ip address 172.16.10.2 255.255.255.0
!
interface Serial1
ip address 172.16.20.2 255.255.255.0
!
interface BRI0
no ip address
shutdown
!
router rip
version 2
network 172.16.0.0
network 192.168.0.0
!
no ip classless
ip route 0.0.0.0 0.0.0.0 172.16.10.1
!
!
line con 0
line aux 0
line vty 0 4
password cisco
login
!
end
R3
Current configuration : 813 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R3
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$MOmo$86tGwGUXeZaLv6xucTBKt/
!
no aaa new-model
ip subnet-zero
ip cef
!
!
no ip domain lookup
ip host R2 172.16.20.2
ip host R1 172.16.10.1
!
!
!
!
!
interface Ethernet0/0
ip address 192.168.1.1 255.255.255.0
half-duplex
!
interface Serial0/0
ip address 172.16.20.1 255.255.255.0
clock rate 72000
!
interface BRI0/0
no ip address
encapsulation hdlc
shutdown
!
interface Serial0/1
no ip address
shutdown
!
router rip
version 2
network 172.16.0.0
network 192.168.1.0
!
ip http server
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.123.254
!
!
!
line con 0
line aux 0
line vty 0 5
password cisco
login
!
!
end
Safecom Adsl routing table:
ID Destination Subnet Mask Gateway Hop Enable
1 192.168.0.2 255.255.255.0 192.168.123.1 2 T
2 192.168.1.2 255.255.255.0 192.168.123.1 3 T
Any help would be
much appreciated![/img]