February 6, 2012

18 days and Counting

Only 18 days till my lab.  If any of you have suggestions please let me know.  Whatever optimizes my study time and gets me though the lab I am willing to adjust for!

Here is my current plan:

(7/28-8/1)

  • Totally go back through the InternetworkExpert Volume 1 this week. Every Lab- making sure I haven’t missed anything.

(8/2)

  • 8-hour Lab Experience- InternetworkExpert Volume II lab guide.  Probably lab 1.

(8/3-8/9)

  • Begin a week in IPexpert Racks.  I’m going to try to plow straight through the workbook starting on page 1.

(8-10-8/14)

  • Back to a week of Internetwork Expert Racks.  I’m taking the week off and starting the 5-day bootcamp CoD at 7am.  Going to go through it just as if I were in the class again.  (of course I have a little travel in here that I didn’t mention.)

(8-15)

  • My CCIE Security Exam in San Jose, Ca.

19 Days Until My Lab

It’s 19 days before my lab and I am not even close to being ready.  I don’t really have a studny plan for the short term.  I guess I should consider what I need to really work on over the next few days.  I have changed the way I schedule rack time.  Starting tomorrow (Monday) I have booked the labs for all sessions so that I can get on the lab whenever I want and I dont have to worry about losing my configs.  Anyone have suggestions for the last few weeks prior to the exam?  Please leave a comment and let me know.  Your recommendations are welcomed!

Now back to my studies.

CCNA/CCENT: RIP TIP

For the CCNA Exam the Routing Information Protocol (RIP) is still covered.  Your knowledge of this protocol is not going to need to be extremely extensive but you will need to know some of the highlights. 

  • RIP is a Distance Vector routing protocol
  • RIPs Administrative Distance is 120
  • RIP uses hop count to choose the best path.  This is called a metric.  The shortest hop count is preferred. 
  • RIP has two versions, Version 1 and Version 2
    • Version 1 is Classfull, meaning it does not advertise a Subnet Mask with the routing update
    • Version 1 Sends the RIP updates to the broadcast address 255.255.255.255
    • Version 1 assumes that all the subnet masks in the network are the same.  This is called Fixed Length Subnet Masking (FLSM)
    • Version 2 is Classless meaning it does send a subnet mask with the update.
    • Version 2 sends the RIP updates to the multicast address 224.0.0.9
    • Version 2 supports Variable Length Subnet Masking

To configure RIP follow these steps:


! Enable the RIP process on the router:

config t
router rip

! Once enabled you need to change it to Version 2 as this is not the default.

version 2

! Also, RIP summarizes routes at the classfull network boundary. 

! It's common to see the following:

no auto-summary

! Next tell RIP what networks it will advertise into the RIP process. 

! You need a statement here for every network you are connected to and

! that you want other routers in the network to see and be able to get to.

network 10.0.0.0
network 192.168.1.0

! Exit the configuration mode:

end

! Verify RIP with the following commands:

Show IP Protocols
Show IP Route
Show IP Route RIP