Thursday, February 1, 2007

Cisco Certified Network Associate Exam Curriculum

Before starting any plan for ccna examination or on any exams, we must know the requirement for the exam, or the syllabus of the exam. Therefore, again, I will highlight the content of the curriculum for you all to follow.

The following information provides general guidelines for the content likely to be included on the exam. However, other related topics may also appear on any specific delivery of the exam.

In order to better reflect the contents of the exam and for clarity purposes the guidelines below may change at any time without notice.

Planning & Designing

  • Design a simple LAN using Cisco Technology
  • Design an IP addressing scheme to meet design requirements
  • Select an appropriate routing protocol based on user requirements
  • Design a simple internetwork using Cisco technology
  • Develop an access list to meet user specifications
  • Choose WAN services to meet customer requirements

Implementation & Operation

  • Configure routing protocols given user requirements
  • Configure IP addresses, subnet masks, and gateway addresses on routers and hosts
  • Configure a router for additional administrative functionality
  • Configure a switch with VLANS and inter-switch communication
  • Implement a LAN
  • Customize a switch configuration to meet specified network requirements
  • Manage system image and device configuration files
  • Perform an initial configuration on a router
  • Perform an initial configuration on a switch
  • Implement access lists
  • Implement simple WAN protocols

Troubleshooting

  • Utilize the OSI model as a guide for systematic network troubleshooting
  • Perform LAN and VLAN troubleshooting
  • Troubleshoot routing protocols
  • Troubleshoot IP addressing and host configuration
  • Troubleshoot a device as part of a working network
  • Troubleshoot an access list
  • Perform simple WAN troubleshooting

Technology

  • Describe network communications using layered models
  • Describe the Spanning Tree process
  • Compare and contrast key characteristics of LAN environments
  • Evaluate the characteristics of routing protocols
  • Evaluate TCP/IP communication process and its associated protocols
  • Describe the components of network devices
  • Evaluate rules for packet control
  • Evaluate key characteristics of WANs
Taken from CISCO Systems Webpage

Tuesday, January 30, 2007

What 's VTP ?

VLAN Trunk Protocol (VTP) reduces administration in a switched network. When you configure a new VLAN on one VTP server, the VLAN is distributed through all switches in the domain. This reduces the need to configure the same VLAN everywhere. VTP is a Cisco-proprietary protocol that is available on most of the Cisco Catalyst series products.

Note: This document does not cover VTP Version 3. VTP Version 3 differs from VTP Version 1 (V1) and Version 2 (V2), and it is only available on Catalyst OS (CatOS) 8.1(1) or later. VTP Version 3 incorporates many changes from VTP V1 and V2. Make certain that you understand the differences between VTP Version 3 and prior versions before you alter your network configuration.


Refer to one of these sections of the document Configuring VTP for more information:


For more details, you may go to CISCO doc

Courtesy from CISCO Systems Page

Where can we register the Exam?

Dear all,

I'm realize that before we go to CCNA, we need to register the exam. For CCNA exam, we have PEARSON VUE and PROMETRIC as the test center.

Both VUE and PROMETRIC offer the same set of questions regardless of your location on the globe.More or less the testing centers received same routing updates from cisco as they are adjacent.

Click below link for more CISCO's Learning Partner System

Steps To Study Ccna

Dear Friends,

Below are the steps in preparing for CCNA Exam.

Follow the steps below:

1) You have two options read CCNA INTRO BOOK and ICND book (Cisco Press) or Read CCNA SYBEX BOOK(Todd Lammle).
Note: If you are reading for example SYBEX book and any topic which is not clear you can refer cisco press books for those topics and vice versa. Also which ever book you follow must solve practice questions at the end of other books too.

2) If you want to follow one book you can go for CCNA SYBEX Book (Todd Lammle).

3) When you study the chapter must solve the questions in the end too.

4) Do labs along with chapters. I would recommend you to do labs on real equipment which will give you more confidence and help in real life scenario's if not then do labs on simulators.

5) Till the time you are reading book, solving questions and performing labs do not consult any
practice exams or test like test king or actual test etc.

6) Once you are done with book and labs only then solve test king and/or actual test make sure if you find any mistake in them consult book again.

7) Register for CCNA exam at least 7 days before you have prepared for the exams.

Yoshh...go for it man!!!..Be certified...


Based on Makecrazy experience at Sadhikov Forum

Ccna Commands In 10mins

Hi Friends,

After finishing my CCNA exams last year. I 'm still finding materials to enhance my configuring switches capabilities. If we know the necessary commands to configure the machine, it will help us to complete the work.

IP ROUTING

#sh ip route - To view IP routing tables created on a Cisco router.

-Static Routing- Routers are manually configured for networks that are not directly connected, to be able to route to all networks via the next-hop interface.

Example- Let 192.168.30.0/24 be the IP of a network not directly connected
Let 192.168.20.2 be the next hop interface

(config)#ip route 192.168.30.0 255.255.255.0 192.168.20.2

-to remove static route
(config)#no ip route 192.168.30.0 255.255.255.0 192.168.20.2

-Default Routing- Used on stub networks only to send packets with remote destination network not in the routing table to the next hop router.

(Assume IP 192.168.40.1 is not in routing table)

-first remove static route
(config)#no ip route 192.168.30.0 255.255.255.0 192.168.40.1
(config)#ip route 0.0.0.0 0.0.0.0 192.168.40.1

-RIP-A distance vector routing protocol that passes complete routing table contents to neighbouring routers

Example- Let 192.168.10.0 & 192.168.20.0 be directly connected networks of a router interfaces and 192.168.30.0 be non-directly connected

-first delete all static routes
(config)#no ip route 192.168.30.0 255.255.255.0 192.168.20.2
(config)#router rip
(config-router)#192.168.10.0
(config-router)#192.168.20.0
(config-router)#^z
#

-Verifying RIP
1.Sh ip route
2.debug ip

-Holding Down RIP Propagation-To stop RIP update sending but allow its receipt
-say for s0/0 with ip 192.168.10.0

(config)#router rip
(config-router)#network 192.168.10.0
(config-router)#passive-interface serial 0/0

-IGRP-Also a distance routing protocol
Example- Let 192.168.10.0 & 192.168.20.0 be directly connected networks of a router interfaces with autonomous system number of 10 and 192.168.30.0 be non-directly connected

#router igrp 10
(config-router)#network 192.168.10.0
(config-router)#network 192.168.20.0
(config-router)#^z
#

-Verifying IGRP
1.sh ip route
2.sh protocols- Displays routed protocols and their interfaces
3.sh ip protocols- Displays routing protocols configured
4.debug igrp events- Displays summary of IGRP routing information running on the network
5.debug igrp transactions- Displays messages request from neighbour routers

-Turning off all possible debugging
#un all

-EIGRP-Uses classless routing which is subnet mask information sent with routing protocol updates.

Example- Let 192.168.10.0 & 192.168.20.0 be directly connected networks of a router interfaces with autonomous system number of 20 and 192.168.30.0 be non-directly connected

#router eigrp 20
(config-router)#network 192.168.10.0
(config-router)#network 192.168.20.0
(config-router)#^z

-To stop EIGRP from working on an interface-no sending no receipt
(config)#router eigrp 20
(config-router)#passive-interface serial 0/0

-To enable EIGRP on discontiguos networks(two different subnetworks of classfull network connected by another different classful subnetwork)
Example- Let 172.16.0.0 & 10.0.0.0 be directly connected to a router to another remote subnetwork of 192.168.10.0, then to enable EIGRP, we use

(config)#router eigrp 100
(config-router)#network 172.16.0.0
(config-router)#network 10.0.0.0
(config-router)#no auto-summary
N.B-The no auto-summary command sholuld be enabled in routers that encloses such networks.

-Verifying EIGRP
1. sh ip route- Shows entire routing table
2. sh ip route eigrp- Shows only EIGRP entries in the routing table
3. ip eigrp neighbours- Shows all EIGRP neighbours
4. ip eigrp topology- Shows entries in the EIGRP topology table

OSPF- A link-state routing protocol

Example- Let 10.0.0.0 be the network directly connected to the router upon which OSPF is to be enabled; with ospf ID of 1 and area o

(config)#router ospf 1
(config-router)#network 10.0.0.0 0.255.255.255 area0

-Loopback Interface- They are configured to be used as the routers RID to advertise the routes and elect DR and BDR.

Example- Let the loopback iinterface be configured on interface with ip 172.16.10.1

(config)#int loopback 0
(config-if)#ip address 172.16.10.1 255.255.255.0
(config-if)#no shut
(config-if)#^z

-Verifying OSPF Configuration
1. sho ip ospf- Used to display all OSPF information
2. sho ip ospf database- indicates the number of links and neighboring router ID
3. sho ip ospf interface- Displays all OSPF interface related info
4. sho ip ospf neighbour- Summarizes OSPF info about neighbours
5. sho ip protocols- Overview of all present running protocols

- Verifying Loopback and RID
1. sho running-config- To verify loopback address
2. sho ip ospf database- Verifies the new RID of each router
3. sho ip ospf interface- Verifies the new RID of each router

-Initial configuration of a 1900 Switch with ip 172.16.10.16

>en
#config t
(config)#enable password level 1 kennifeh
(config)#enable password level 15kennifeh 1
(config)#enable secret kennifeh 2(when enabled no need 4 enable password)
(config)#hostname kenn 1900
(config)#ip address 172.16.10.16 255.255.255.0
(config)#ip default-gateway 172.16.10.1
(config)#int f0/1
(config-if)#description Finance_vlan (No space for 1900)
(config-if)#int f0/26
(config-if)#description Trunk_to_Biulding
(config-if)#exit
(config)#

-Initial Configuration of 2950 Switch with ip 172.16.10.17 255.255.255.0

>en
#config t
(config)#hostame kenn2950
(config)#enable password kenn
(config)#enable password kenn1(enable and enable secret password must be different)
(config)#line vty 0 15
(config-line)#login
(config-line)#password telnet
(config-line)#line con 0
(config-line)#login
(config-line)#password console
(config-line)#exit
(config)#int vlan 1
(config-if)#ip address 172.16.10.17 255.255.255.0
(config-if)#no shut
(config-if)#int f0/1
(config-if)#description sales printer(with space)
(config-if)#int f0/12
(config-if)description connection to backbone
config-if)#exit
(config)#ip default-gateway 172.16.10.1
(config)#

-Erasing Switching Configuration 1900

#delete nvram
yes

-Erasing Switching Configuration 2950

#erase startup-config
Enter


-Configuring VLANS 1900

>en
#config t
(config)#vlan 2 name Cisco
(config)#vlan 3 name Microsoft
(config)#vlan 4 name Comptia
(config)#exit

verify with command sh run

-Configuring for 2950

>en
#vlan database
(vlan)#vlan 2 name Cisco
(vlan)#vlan 3 name Microsoft
(vlan)#vlan 4 name Comptia
(vlan)#apply
(vlan)#^c

verify with command sh vlan brief

-Assigning Switch Ports To Vlan-1900

(config)#int e0/2
(config-if)#vlan-membership static 2
(config-if)#int e0/3
(config-if)#vlan-membership static 3
(config-if)#exit

verify with sh vlan

-Assigning Switch Ports To Vlan-2950

(config)#int f0/2
(config-if)#switchport access vlan 2
(config-if)#int f0/3
(config-t)#switchport access vlan 3
(config-if)#int f0/4
(config-if)#switchport access vlan 4
(config-if)#

verify with sh vlan brief

-Configuring Trunks ports

(config)#int f0/26
(config-if)#trunk on

-Configuring Trunk Ports for 2950

(config)#int f0/12
(config-if)#switchport mode trunk
(config-if)#^z
#

-To disable Trunk

use- switchport mode access


-To verify Trunking

use sh running config

-Configuring Inter-vlan Routing for 1900 connecting to 2600

(config)#int f0/0.1
(config-if)#encapsulation isl vlan (d number)

-Configuring Inter-vlan Routing for 2950 connecting to 2600

(config)#int f0/0.1
(config-if)#encapsulation dot1q vlan (d number)

-Configuring VTP for 1900


(config)#vtp server
(config)vtp domain kenn
(config)#vtp password kenn

-Configuring VTP for 2950

(config)#vtp mode server
(config)#vtp domain routersim
(config)#^z

-verify with sh vtp status

show vtp status


-Checking the Current Configuration Register Values

show version or show ver

-Changing Configuration Register

(config)#config-register 0x101 (d default is 0x2102)
(config)#^z

-Recovering Passwords

-1. Interrupt the Router Boot Sequene
ctrl+Break key (windows wont perform break key, only 95/98)

-2. Changing the configuration register
-for 2600 series router
rammon>confreg 0x2142

-for 2500
type 0 after a break and enter the command o/r 0x2142

-3. Reloading the Router and Entering Privilged mode
-for 2600-type reset
-for 2500-type I

-4. Viewing and changing the configuration
-copy run start

-5. Resetting the configuration Register and Reloading the Router
-config t
-config-register 0x2102
-copy run start-to save

-Backing up and restoring the Cisco ios

-1. verifying flash memory-Ensuring flash memory has enough room
router#sh flash

-2. Backing-up the ciso ios
first verify server connectivity by- Router#ping 192.168.0.120
then; router#copy flash tftp
-3. Restoring or upgrading the cisco router ios
router#copy tftp flash
[confirm][ENTER]
?[ENTER]

-Backing up and Restoring the Cisco configuration

1.Backing up the cisco router configuration
-copy runing config tftp

2. verifying the current configuration
-sh run

3. copying the current cofiguration to NVRAM
-copy run start

4. copying the current configuration to a TFTP server
-copy run TFTP

5. Restoring the Cisco Router Configuration
-copy TFTP run

6. Erasing the configuration
-erase startup-config

-Getting CDP timers and Holdtime information

Router#config t
Router(config)#cdp timer 90
Router(config)#cdp holdtime 240
Router(config)#^z

-To turn-off CDP Completely

no cdp run


-Gathering Neighbour information

kenn2509#sh cdp nei- delivers information about directly connected devices
OR kenn2509#sh cdp neighbour detail Also sh cdp entry

-Gathering Interface Traffic Information
kenn2509#sh cdp traffic

-Gathering port and Interface information

kenn2509#sh cdp interface

-To turn off cdp on a router, use

no cdp enable then ^z

-Using Telnet

kenn2509#telnet 172.16.10.2

-Telnetting into multiple devices simultaneously

kenn2509#telnet 172.16.10.2
then, 2501B>{cntl+shift+6, then x}

-checking Telnet connections

kenn2509#sh sessions-connections from your router to remote

-checking Telnet users

kenn2509#sh user

-closing Telnet sessions

1900switch>exit OR
kenn2509#disconnect1 (num of active networks)

-Resolving Hostname

kenn2509#config t
kenn2509(config)#ip host 2501B 172.16.10.2
kenn2509(config)#ip host 1900switch 192.168.0.148
kenn2509(config)#^z

-To remove a hostname from a table, use

RouterA(config)#no ip host routerB

-Using DNS to resolve names

#config t
(config)#ip domain-lookup (usually turned on by default)
(config)#ip name-server 192.168.0.70 (ip of an assumed DNS set)
(config)#ip domain-name kenn.com (Appends the domain name to a host)
(config)#^z

-Check Network Connectivity
use ping command
#ping kenn2509

-Using Traceroute command
#trace 2501B

-Creating a Standard Access Lists (1-99 or 1,300-1,999)

(config)#access-list 10 deny 172.16.30.2 (using the ip as a test)

-Controlling vty(Telnet) sessions

(config)#access-list 50 permit 172.16.30.2
(config)#line vty 0 4
(config-line)#access-class 50 in

-Creating Extended Access-lists (100 to 199) OR (2000 to 2699)

(config)#access-list 110 deny tcp any host 172.16.30.2 eq 23 log
(config)#access-list 110 permit ip any any
(config)#int f0/0
(config-if)#ip access-group 110 in
(config-if)#ip access-group 110 out


Thanks for kennifeh@sadhikov forum for the tips

Router Summarizing In 5 Mins

Ripv1 and IGRP


Those protocols do auto summary to the classfull network which means
if you try to add a network of 10.1.1.1 it will auto summary to 10.0.0.0

You cant turn off this auto summary in Ripv1 and IGRP

you can turn it off on Ripv2 and EIGRP summarizing

OSPF and IS IS does not auto summery

Note:
Classful routing protocols (RIPv1 and IGRP) automatically summarize routes on the classful network boundary and do not support summarization on any other bit boundaries. Classless routing protocols support summarization on any bit boundary.


Route Summarization Calculation example

suppose you got this networks attached to your router like different LAns

172.16.12.0/24

172.16.13.0/24

172.16.14.0/24

172.16.15.0/24

1) first step:
You will convert everything to binary

10101100.00010000.00001100.00000000 -->172.16.12.0
10101100.00010000.00001101.00000000 --->172.16.13.0
10101100.00010000.00001110.00000000 -->172.16.14.0
10101100.00010000.00001111.00000000 -->172.16.15.0


2) Second Step

You need to locate the bits till where the bits are equals
What i mean with this ?

10101100.00010000.00001100.00000000 -->172.16.12.0
10101100.00010000.00001101.00000000 --->172.16.13.0
10101100.00010000.00001110.00000000 -->172.16.14.0
10101100.00010000.00001111.00000000 -->172.16.15.0

As you can see all the bits are equal till 6th bit of the 3rd octet(can you can see it above i BOLDED all the equals bits)

Now you find this we will go to step 3

3)Third step

You need to count those bits, the summary route number will be the first IP address in the block, and the subnet mask will be the number of common bits.

so the answer is
172.16.12.0/22


Well i think this is all you need to know about summarizing If anyone find any mistake on my explanation they are welcome but im pretty sure its like this.

thanks for NightShake@sadhikov for the information :-)

Connectinng Two Different Switches

Here...again, I will continue to show you how to configure the access type switch, Cisco Catalyst 2950 with Avaya Multiservice Switch(Layer 2) from my experience.

We 'll configure the SX port to discard vlan(4097). This vlan is used to carry multiple vlan in a trunk. We add 802.1Q as the encapsulation mode for the port.
The configuration for the Avaya switch as in below line;

set port name 6/4 "Port 6.4 (Block E)"
set port vlan 6/4 4097
set port trunking-format 6/4 ieee-802.1Q
set port spanning-tree-mode 6/4 disable
set port vlan-binding-method 6/4 bind-to-all


To know more about the product of Avaya Multiservice Switches, you may go to to link.

-------------------------------------------------------------------------------

Next, we will configure the SX gigabit module in the switch to accommodate the multiple vlan requirement for the port.

The configuration for the Cisco switch as in below line;

interface GigabitEthernet0/2
switchport mode trunk
speed nonegotiate
storm-control broadcast level 60.00
!

To know more about the Cisco Catalyst 2950 configuration, you may go to to link.

Before ending this process, we must do the necessar troubleshooting procedure such as ping, tracert and so on to make sure there is a connectivity between the switches.

That'all for for this topic..Thanks

Monday, January 29, 2007

Just thinking of Configuring Trunks issue


Owh...we have installled Cisco Catalyst 2950 in our campus and i'm wondering about an issue that give me the inspiration to write this post.

The basic thing that we need to think when connecting the 2 same devices, is the protocol that they use to communicate each other, and how about when both of them are not the same brand/model switch?

By default DTP is enabled on switch ports, dynamic desirable means the protocol will actively send requests to form a trunk.Dynamic auto means it will not actively send requests but if a request is received it will respond and form a trunk.If two connected ports are configured as dynamic desirable they will both send requests and respond so a trunk will be formed.It's easy, huh?

So..next time I 'll show show you how to connect two difference brand switches.


refer: Rick Graziani-CCNA3-Chapter 9 - VLAN Trunking, VTP and DTP

Materials for CCNA exam


I have done some reading in several forums in the internet, and i found an interesting site that give me the resources to CISCO materials.

hxxp://rapidshare.de/users/K9YAE4
password: downloadfile

Thanks to K. Hasan from Sadhikov Forum

--------------------------------------------
CCNA
:
--------------------------------------------

  1. Sybex Study Guide - 5th Edition
  2. Pass4sure 640-801 CCNA V.2.60
  3. Testking v96
  4. Testking v97
  5. 640-860 CCNA Testking V.102 with 909 Q&A
--------------------------------------------

What 's CCIE

Okay..let back to our business..that is all about the cisco and now we focus on CCIE certification.

Basically, there are no formal prerequisites for CCIE certification; other professional certifications or training courses are not required. However, you must first pass a written qualification exam and then the corresponding hands-on lab exam. The candidate are expected to have an in-depth understanding of the topics in the exam blueprints and strongly encouraged to have three to five years of job experience before attempting certification.

The written exam is a two-hour, written qualification exam which covers networking concepts and some equipment commands before you are allowed to schedule the lab exam.
Next, we must schedule the lab exam with Cisco. The eight-hour lab exam tests your ability to configure actual equipment and get the network running in a timed test situation. And you must pass the lab within three years of passing the written to achieve certification. The first lab attempt must be made within 18 months.


My Dream Job

Below are the job requirement for a Deep Technical Support Network Engineer. It's really fascinate me to learn all the skills and knowledge as shown below.

What's say you? What is your dream job?
---------------------------------------------------------------------------------------------

Job Requirements

From a technical perspective you must be able to demonstrate experience in the following areas:


• Troubleshooting and resolving firewall, WAN, LAN, DNS, caching and network security issues
• Administering TCP/IP LAN’s (VLAN routing, VTP, Spanning Tree)
• Administering large-scale and complex WAN networks
• Troubleshooting skills in Cisco Routers and Cisco Pix
• Diagnosing network problems and maintaining network security
• To be successful in the role, you must have strong knowledge of TCP/IP protocols, firewalls, networks – routers, L2 and L3 switches, gateways and networking servers. A familiarity with Cisco networking products is essential. Experience in HP ITO and HP Openview, HP Procurve switches and knowledge of encryption and Virtual Private Networks would be a distinct advantage.

Our ideal candidate will:

• Hold a degree in computer science, computer engineering, electrical engineering or management information systems
• Possess a minimum of 3 years experience in IT operations
• Hold Cisco Certification to at least Network Associate (CCNA) level
• Have an excellent understanding of IT Service Management (ITSM) and IT Infrastructure Libraries (ITIL) processes.

If you are not Cisco certified, but have the desired experience and technical skills your application will also be considered.

Fluency in English is essential, as is your willingness to work shift arrangements.


----------------------------------------------------------------------------------------------

Sunday, January 21, 2007

Cisco Networkers Solutions Forum@ Malaysia

Cisco Networkers Solutions Forum (CNSF), Cisco’s annual user conference, is the most important conference in the networking industry. This is a once-a-year opportunity to find out what the worldwide leader in networking and its partners are developing, building, designing, and planning for today and tomorrow’s networks.

CNSF is the event where you can develop the expertise required to successfully navigate through the dynamic Global Internet Economy. It is the most important user conference for networking professionals and is out customers’ one-stop opportunity for training and obtain information necessary to keep up with Cisco’s technologies, solutions and products.

I went to the forum to represent my university as my organization won a prestige award from CISCO Systems in education sector.

For more information, please go to http://www.cisco.com/web/MY/learning/cnsf/index.html

My Home, My Country

Dear Friends,

As you all know, I 'm from Malaysia. Currently we have Visit Malaysia Year 2007. For those who know Malaysia, love Malaysia - why? You must experience Malaysia’s sights and sounds for yourself and don’t just see what others say, read or watch, because seeing is a believing for us.

Malaysia is celebrating it’s 50th birthday in 2007 and plans to party all year round!For event details, Click Here.

However, for people who do not know where and what is Malaysia is all about, you may go to this site http://www.geographia.com/malaysia/index.html


Thursday, January 18, 2007


It has been 4 years working at CITS, Multimedia University, Melaka, and I ‘m very happy about it because of low cost living in Melaka, Malaysia. Besides that, helpful hands from my colleagues make my daily job easier in CITS. The are two main reasons in supporting my my company is in Melaka, Malaysia. As time goes by, I’m thinking of to focus on my specialization in my career. Since day one, I do network, server and pabx system stuffs to accommodate the campus community needs. Of course, with the wide range of job scope, I will learn a lot since I can do all the jobs that given to me. This will give me the opportunity to contribute as much as I can to my department. However, from my opinion, the specialization will make me more “valuable” to my company and to job market.What ‘s your opinion about this issue?

Introduction To The Page


This page is dedicated for a light discussion of network area especially in cisco certification. I had finished by CISCO Certified Network Professional(CCNP) in November 2006. The idea in developing this page is to give a basic idea to people in gaining or knowing about this certification. Hopefully we can gather more ideas/knowledge in gaining the CISCO certification.

Wednesday, January 17, 2007

Introduction to CCNA

Based on my findings at cisco web site, the CCNA certification (Cisco Certified Network Associate) indicates a foundation in and apprentice knowledge of networking. CCNA certified professionals can install, configure, and operate LAN, WAN, and dial access services for small networks (100 nodes or fewer), including but not limited to use of these protocols: IP, IGRP, Serial, Frame Relay, IP RIP, VLANs, RIP, Ethernet, Access Lists.

Currently, we have two path of ccna learning curves,you can take one comprehensive paper or you can take 2 different papers to complete your ccna certification.

For more information, you may click the link –> What ’s CCNA

Working Experiences

I hold a master degree, Msc of Quantitative Science(majoring in Data Management) from Universiti Teknologi MARA, Shah Alam, Selangor. In addition, I have graduated from Multimedia University, Selangor, Malaysia, in B. IT(Hons) majoring in Software Engineering.