Challenge 2
___________
You must configure R1 to leverage the two Content Engines. R1 must ensure that it can only communicate with 192.168.0.100 and 192.168.0.101 content engines. Hosts on 10.0.2.0/24 should not use the content engines and should be able to surf the internet without being redirected. Hosts on 10.0.1.0/24 should be redirected to the content engines. The configuration should only be completed on R1. Note: You must use the latest version of the technology and it must support authentication.
R1
__
interface FastEthernet0/0
ip address 10.0.0.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.0.1 255.255.255.0
duplex auto
speed auto
no keepalive
!
interface Serial1/0
ip address 200.0.0.1 255.255.255.0
serial restart-delay 0
!
router ospf 1
router-id 1.1.1.1
log-adjacency-changes
redistribute static metric 5 subnets
network 10.0.0.1 0.0.0.0 area 0
network 192.168.0.1 0.0.0.0 area 0
network 200.0.0.1 0.0.0.0 area 0
!
ip route 0.0.0.0 0.0.0.0 200.0.0.2
R2
__
interface FastEthernet0/0
ip address 10.0.0.2 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 10.0.1.1 255.255.255.0
duplex auto
speed auto
no keepalive
!
interface FastEthernet1/0
no switchport
ip address 10.0.2.1 255.255.255.0
no keepalive
!
router ospf 1
router-id 2.2.2.2
log-adjacency-changes
network 10.0.0.2 0.0.0.0 area 0
network 10.0.1.1 0.0.0.0 area 0
network 10.0.2.1 0.0.0.0 area 0
R3
__ -- Acting as the hext hop to the internet
interface Serial1/0
ip address 200.0.0.2 255.255.255.0
serial restart-delay 0
!
ip route 10.0.0.0 255.255.255.0 200.0.0.1
ip route 10.0.1.0 255.255.255.0 200.0.0.1
ip route 10.0.2.0 255.255.255.0 200.0.0.1
ip route 192.168.0.0 255.255.255.0 200.0.0.1
Good Luck!