eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 
eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 

Your Online Guide » Science & Technology » CCNA Exam Guide

[C313]Ccna Exam 640 801
by Seema Manivannan, See
CCNA 640-801 Certification
Or
INTRO 640-821 and ICND 640-811

The details about the above exams is avaialable at http://www.whizlabs.com/ccna.html.

Cisco CCNA Certification has gradually evolved through several revisions to encompass the changing trends of the networking scenarios in the IT world. To know more about Cisco certifications, check out http://www.whizlabs.com/cisco-certification.html.

Details about the Exam
The CCNA 640-801 was launched on the 30th of June 2003 and allows the flexibility of achieving certification through one track the CCNA 640-801 or through two tracks the INTRO 640-821 and ICND 640-811.

The most popular or sought after track is the CCNA 640-801 as it obviously has just one exam that you need to get through.

Although Cisco claims this to be an entry level or a foundation certification, it pays to have an experience of at least 1 year in implementing at least a small sized or medium sized LAN and having a basic idea about OSI layers.

The objectives are still divided into 4 sections as mentioned below:

Planning & Designing
- Design a simple LAN using Cisco Technology
- Design an IP addressing scheme to meet design requirements
- Choose an appropriate routing protocol based on user requirements
- Design a simple internetwork using Cisco technology
- Choose WAN services to meet customer requirements

Implementation & Operation
- Configure routing protocols and router administrative functions
- Configure IP addresses, subnet masks, and gateway addresses on routers and hosts
- Configure a switch with VLANS and inter-switch communication for specified network requirements
- Implement a LAN
- IOS and Configuration files management
- Router and Switch configuration and factory default settings
- Implement access lists
- Implement simple WAN protocols

Troubleshooting
- Using OSI model for troubleshooting LAN and WAN
- Troubleshoot routing protocols
- Troubleshoot IP addressing and host configuration
- Troubleshoot a live network device
- Troubleshoot an access list

Technology
- Describe network communications using layered models
- STP and VTP
- Evaluate routing protocols for a given scenario
- TCP/IP suite and comparison with ISO model
- Describe the components of network devices
- Evaluate rules for packet control
- Evaluate key characteristics of WANs

Exam Pattern
- Number of Questions: 55 to 65

- Question types:
- Single choice
- Multiple choices
- Drag and Drop
- Simulation based

- Passing Score: must be 850 and above
- Time given: 90 minutes

The Simulator based questions will have a button on the exam screen, which when pressed will take you to an interface that looks exactly like the hyper terminal screen of a router or a switch.

Although it is a simulator, you will feel like you are configuring or troubleshooting a live router or a switch. The IOS commands possible on the live devices will be possible here too.

The drag and drop question will be mainly the match the following type. You will be presented with 3 columns, the one on left will be static, the cells in the right most will be moveable and the middle column will be empty place holders. You will be required to drag a cell from the right column to these empty place holders to match the content in the left column.

The single choice and multiple choices will usually be accompanied with instructions such as 'Choose the best' or 'Choose at least two' respectively.

Why the two track path?
Although CCNA 640-801 is the most sought after rather than the two track path, it is easier for beginners when the content gets split into two levels of foundation. The Intro exam essentially serves this purpose.

Also another reason being, the CCNAs who have a certification in the previous version only need to take up the ICND exam to recertify in the newer version, that is the 640-801 CCNA.

While the exam pattern along with the technologies keep changing with the new additions, the basic concepts of network assessment still remains intact in the CCNA 640-801 track.

Useful Resources
Preparation Kit
Whizlabs CCNA 640-801 Preparation Kit
Besides identifying your weak areas, and giving you a feel of the exam environment, Whizlabs Preparation Kit nurtures your potential to acquire domain expertise so that you not only succeed in your certification exam but succeed in your career too. To know more about Whizlabs CCNA Preparation Kit and how it can contribute to your success, please visit http://www.whizlabs.com/cisco/640-801-details.html.

Books
- CCNA Official Cisco Course Ware
- Cisco Press books
- Sybex Series

Well, with all this information you are well armed to take up the CCNA 640-801 exam and score well too! Best of Luck!

Access Control Lists (ACLs) allow a router to permit or deny packets based on a variety of criteria. The ACL is configured in global mode, but is applied at the interface level. An ACL does not take effect until it is expressly applied to an interface with the ip access-group command. Packets can be filtered as they enter or exit an interface.

If a packet enters or exits an interface with an ACL applied, the packet is compared against the criteria of the ACL. If the packet matches the first line of the ACL, the appropriate “permit” or “deny” action is taken. If there is no match, the second line's criterion is examined. Again, if there is a match, the appropriate action is taken; if there is no match, the third line of the ACL is compared to the packet.

This process continues until a match is found, at which time the ACL stops running. If no match is found, a default “deny” takes place, and the packet will not be processed. When an ACL is configured, if a packet is not expressly permitted, it will be subject to the implicit deny at the end of every ACL. This is the default behavior of an ACL and cannot be changed.

A standard ACL is concerned with only one factor, the source IP address of the packet. The destination is not considered. Extended ACLs consider both the source and destination of the packet, and can consider the port number as well. The numerical range used for each is different: standard ACLs use the ranges 1-99 and 1300-1399; extended lists use 100-199 and 2000 to 2699.

There are several points worth repeating before beginning to configure standard ACLs.

Standard ACLs consider only the source IP address for matches.

The ACL lines are run from top to bottom. If there is no match on the first line, the second is run; if no match on the second, the third is run, and so on until there is a match, or the end of the ACL is reached. This top-to-bottom process places special importance on the order of the lines.

There is an implicit deny at the end of every ACL. If packets are not expressly permitted, they are implicitly denied.

If Router 3's Ethernet interface should only accept packets with a source network of 172.12.12.0, the ACL will be configured like this:

R3#conf t

R3(config)#access-list 5 permit 172.12.12.0 0.0.0.255

The ACL consists of only one explicit line, one that permits packets from source IP address 172.12.12.0 /24. The implicit deny, which is not configured or seen in the running configuration, will deny all packets not matching the first line.

The ACL is then applied to the Ethernet0 interface:

R3#conf t

R3(config)#interface e0

R3(config-if)#ip access-group 5 in

But before you write any ACLs, it's a really good idea to see what other ACLs are already running on the router! To see the ACLs running on the router, use the command show access-list.

R1#show access-list

Standard IP access list 1

permit 0.0.0.0

Standard IP access list 5

permit 172.1.1.1

Standard IP access list 7

permit 23.3.3.3

Extended IP access list 100

permit tcp any any lt www (26 matches)

permit tcp any any neq telnet (12 matches)

deny ip any any

Extended IP access list 105

deny tcp any any eq www

deny tcp any any eq telnet

You're going to use ACLs all the way up the Cisco certification ladder, and throughout your career. The importance of knowing how to write and apply ACLs is paramount, and it all starts with mastering the fundamentals!

Article Source : CCNA Exam Guide

About Author
Both Seema Manivannan & Chris Bryant are contributors for EditorialToday. The above articles have been edited for relevancy and timeliness. All write-ups, reviews, tips and guides published by EditorialToday.com and its partners or affiliates are for informational purposes only. They should not be used for any legal or any other type of advice. We do not endorse any author, contributor, writer or article posted by our team.

Seema Manivannan has sinced written about articles on various topics from CISCO CCNA, Education. Whizlabs offers an extensive range of IT certification preparation kits for various exams conducted by leading vendors such as Sun, IBM, PMI, Oracle, Cisco, Microsoft and Novell. Over the last 6 years, Whizlabs has contributed to the success of over 500,0. Seema Manivannan's top article generates over 1900 views. to your Favourites.

Chris Bryant has sinced written about articles on various topics from CISCO CCNA, Personal Desktop and Cisco CCNP. . Chris Bryant's top article generates over 27100 views. to your Favourites.
EditorialToday Science & Technology has 2 sub sections. Such as Training & Certification and Communication Tips. With over 20,000 authors and writers, we are a well known online resource and editorial services site in United Kingdom, Canada & America . Here, we cover all the major topics from self help guide to A Guide to Business, Guide to Finance, Ideas for Marketing, Legal Guide, Lettre De Motivation, Guide to Insurance, Guide to Health, Guide to Medical, Military Service, Guide to Women, Pet Guide, Politics and Policy , Guide to Technology, The Travel Guide, Information on Cars, Entertainment Guide, Family Guide to, Hobbies and Interests, Quality Home Improvement, Arts & Humanities and many more.
About Editorial Today | Contact Us | Terms of Use | Submit an Article | Our Authors