Archive for the ‘Computer Certification’ Category
Cisco CCNP / BCMSN Exam Tutorial: Configuring CGMP On Routers & Switches
If a Layer Two switch doesn’t have the capabilities to run IGMP Snooping, it will be able to run CGMP – Cisco Group Membership Protocol. CGMP allows the multicast router to work with the Layer Two switch to eliminate unnecessary multicast forwarding.
CGMP will be enabled on both the multicast router and the switch, but the router’s going to do all the work. The router will be sending Join and Leave messages to the switch as needed. PIM must be running on the router interface facing the switch before enabling CGMP, as you can see:
R1(config)#int e0
R1(config-if)#ip cgmp
WARNING: CGMP requires PIM enabled on interface
R1(config-if)#ip pim sparse
R1(config-if)#ip cgmp
When CGMP is first enabled on both the multicast router and switch, the router will send a CGMP Join message, informing the switch that a multicast router is now connected to it. This particular CGMP Join will contain a Group Destination Address (GDA) of 0000.0000.0000 and the MAC address of the sending interface. The GDA is used to identify the multicast group, so when this is set to all zeroes, the switch knows this is an introductory CGMP Join, letting the switch know that the multicast router is online.
The switch makes an entry in its MAC table that this router can be found off the port that the CGMP Join came in on. The router will send a CGMP Join to the switch every minute to serve as a keepalive.
A workstation connected to the switch on port 0/5 now wishes to join multicast group 225.1.1.1. The Join message is sent to the multicast router, but first it will pass through the switch. The switch will do what you’d expect it to do – read the source MAC address and make an entry for it in the MAC address table as being off port fast 0/5 if there’s not an entry already there. (Don’t forget that the MAC address table is also referred to as the CAM table or the bridging table.)
Read the rest of this entry »
Cisco CCNP / BCMSN Exam Tutorial: Changing The Active Router In HSRP
To pass the BCMSN exam and earn your CCNP certification, you’ve got to know HSRP inside and out. While the operation and basic commands of HSRP are pretty simple, there are some important details that are easily overlooked but are vital in getting HSRP to work the way you want it to. Let’s take a look at using the priority command correctly on both the exam and in production networks.
A key value in the show standby command is the priority. The default is 100, and the router with the highest priority will be the primary HSRP router. We’ll raise the default priority on R2 and see the results. R3 is currently the Active router and R2 the standby, so let’s raise the priority on R2 and see what happens.
R2(config)#interface ethernet0
R2(config-if)#standby 5 priority 150
R2#show standby
Ethernet0 – Group 5
Local state is Standby, priority 150
Hellotime 4 sec, holdtime 12 sec
Next hello sent in 0.896
Virtual IP address is 172.12.23.10 configured
Active router is 172.12.23.3, priority 100 expires in 8.072
Standby router is local
1 state changes, last state change 00:14:24
R2 now has a higher priority, but R3 is still the active router. R2 will not take over as the HSRP primary until R3 goes down – OR the preempt option is configured on R2.
R2(config-if)#standby 5 priority 150 preempt
1d11h: %STANDBY-6-STATECHANGE: Ethernet0 Group 5 state Standby -> Active
R2#show standby
Ethernet0 – Group 5
Local state is Active, priority 150, may preempt
Read the rest of this entry »
Cisco CCNP / BCMSN Exam Tutorial: BPDU Skew Detection
You may look at that feature’s name and think, “What is a BPDU Skew, and why do I want to detect it?” What we’re actually attempting to detect are BPDUs that aren’t being relayed as quickly as they should be.
After the root bridge election, the root bridge transmits BPDUs, and the non-root switches relay that BPDU down the STP tree. This should happen quickly all around, since the root bridge will be sending a BPDU every two seconds by default (“hello time”), and the switches should relay the BDPUs fast enough so every switch is seeing a BPDU every two seconds.
Read the rest of this entry »
Cisco CCNP / BSCI Exam Tutorial: 10 ISIS Details You Must Know!
Earning your CCNP certification and passing the BSCI exam depends on knowing the details of many Cisco technologies, ISIS chief among them. To help you prepare for exam success, here’s a list of ISIS terminology and basic concepts that will help you pass this tough exam. Enjoy!
ISIS Terms:
Domain: section of the network under common administrative control
Area: logical segment of the network composed of contiguous routers and their data links
Intermediate System: A router.
End System: A host device.
The four levels of ISIS routing:
Level 0: ES-IS routing in the same subnet.
Level 1: IS-IS routing in the same area.
Level 2: IS-IS routing in the same domain.
Level 3: Inter-domain routing performed by InterDomain Routing Protocol (IDRP).
Read the rest of this entry »