10 steps to become CCIE Certified

If I can do it, everybody can do it ! Step 1 : Get information Do you have a dream that you want to become CCIE Certified ? You’re at the right address to start here. Before you even start thinking about the written and lab, first you have to get information. Maybe you already … Read more

Personal Notes on Qos on Cisco 2960

I wanted to see what happens when you configure egress Qos with SRR. To accomplish this, I create a policy-map which set the DSCP 40 for WWW traffic.

ip access-list extended ACL_HTTP
 permit tcp any any eq www
class-map match-all CM_HTTP
 match access-group name ACL_HTTP
!
!
policy-map PM_QOS
 class CM_HTTP
 set dscp cs5
interface FastEthernet0/1
 description laptop
 mls qos trust device cisco-phone
 service-policy input PM_QOS

I got a PC and Laptop connected via a Cisco 2960. On the PC I run iperf.exe on the default port and on port 80. On the laptop I have also 2 client iperf running.

Read more

CCIE Collaboration written 400-051 notes.

Here are some thing that is nice to know. Of course check the blueprint to see what is recommended reading.

Cisco Unified IP Phone Firmware Distribution Methods

Table 1. Summary of Distribution Models

Peer Firmware Sharing Load Server Traditional TFTP

Advantages

• Hierarchy is automatic
• One download per phone model on a subnet
• Uses TCP
• Fails back to TFTP
• Speeds up LAN upgrades
• Reduces TFTP CPU load during upgrade
• Has same download time as LAN image distribution
• Distributes TFTP load over multiple TFTP servers
• Proven distribution
• Default behavior

Disadvantages

• Must be enabled on each phone
• Hierarchy is formed for each phone model
• Hierarchy is limited to subnet
• IP must be set on each phone
• Administrator must manually file copy to load server
• No failback to TFTP on error
• More prone to user error
• High-bandwidth requirements
• Multiple requests for same file
• High CPU usage on TFTP server

Link : http://www.cisco.com/c/en/us/products/collateral/collaboration-endpoints/unified-ip-phones-9900-series/white_paper_c11-583891.html

Read more