This blog was originally started to better help me understand the technologies in the CCIE R&S blueprint; after completing the R&S track I have decided to transition the blog into a technology blog.

CCIE #29033

This blog will continue to include questions, troubleshooting scenarios, and references to existing and new technologies but will grow to include a variety of different platforms and technologies. Currently I have created over 185 questions/answers in regards to the CCIE R&S track!! Note: answers are in the comment field or within "Read More" section.

You can also follow me on twitter @FE80CC1E


Showing posts with label Challenge. Show all posts
Showing posts with label Challenge. Show all posts

Sunday, November 7, 2010

Challenge 2

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!

Tuesday, April 20, 2010

Challenge 1

Create a complex network scenario that requires some level of troubleshooting.


Use GNS3 and post your .net file and create a trouble ticket.