Sorry ive been so busy reviewing for my on 640-802 exam, this sept 15 na eh. Maka pasa unta ba..
Anyway, here are the configurations:
Configure only R1:
1. create a default route
ip route 0.0.0.0 0.0.0.0 fastethernet 0/1
2. redistribute the default route to OSPF and RIP network
router ospf 1
default-information originate
router rip
default-information originate
3. Now routings are done. But in order to access internet we need a public IP address to communicate the internet, because private IP are blocked. Since we used private IP on our network, and we have only one public IP from ISP, we need to use NAT with overload to translate all of our pravate IP to public IP.
first create access-list for the private IPs to be translated
ip access-list IP_NAT
permit 192.168.1.0 0.0.0.255
then define interfaces if it belongs to inside or outside address
int fa0/0
ip nat inside
int f0/1
ip nat outside
int s0/0/0
ip nat inside
then configure the NAT
ip nat inside source list IP_NAT interface fastethernet 0/1 overload
There, hope this could be a help on you. Just post and share your diagram if you have..