Posts

Showing posts from 2012

ASA802 Win7 GNS3 8.2

Image
Prepare below two files asa802-k8.initrd.gz http://www.mediafire.com/?t95719uwv6m8aif asa802-k8.kernel http://www.mediafire.com/?j6z9gn9r3cgmgbn Open GNS3, point below option (in yellow) to this two files Start ASA, console and type below command modprobe e1000 ifconfig eth0 up ifconfig eth1 up ifconfig eth2 up ifconfig eth3 up ifconfig eth4 up ifconfig eth5 up cp /asa/bin/lina /mnt/disk0/lina cp /asa/bin/lina_monitor /mnt/disk0/lina_monitor cd /mnt/disk0 /mnt/disk0/lina_monitor

Adding new Nexus 2K fabric extender

Image
This step by step on how to add new Nexus 2000 (N2K) to Nexus 5000 (N5K) Before apply, issue command sh fex and sh interface fex , this will show you fex is connected, but not online    FEX         FEX           FEX                       FEX               Number    Description      State            Model            Serial     ------------------------------------------------------------------------ ---       --------             Connected  ...

Implementing QoS DSCP marking on customer router

Image
In this scenario, QoS policing done on Provider CE router and customer don't have access to it, Customer only mark the traffic with DSCP value for QoS policing (on the CE router) We'll classify highest priority voice to COS1, high priority traffic COS2, less priority COS4 and for traffic didn't match any of those class will be automatically set to COS3 (medium priority) 1.        Classify the packets using ACL, ACL 101 for COS1, 102 COS2  and 104 COS4(traffic didn't match any of the ACL will fall to default, COS3) access-list 101 remark **** Global VoIP ranges ***** access-list 101 permit ip any 10.1.0.0 0.0.255.255 access-list 101 permit ip 10.1.0.0 0.0.255.255 any access-list 101 remark **** Global Citrix ranges ***** access-list 101 permit ip any 10.2.0.0 0.0.255.255 access-list 101 permit ip 10.2.0.0 0.0.255.255 any access-list 101 remark **** Global FTP ranges ***** access-list 101 permit ip any 10.4.0.0 0.0.255.255 access-list 101 permit ip 1...