There is a new feature on WAAS 4.1 called Virtual Blade, which allows you to run a Windows 2008 Server on a WAVE box.
Saturday, November 15, 2008
How to setup syslog server on Linux to receive log messages from Cisco Devices
1. Setup your Cisco devices to send Cisco log to your syslog server
logging 1.2.3.4 ! where 1.2.3.4 is your Cisco log server
logging trap debug
logging on
2. Make sure rsyslog daemon is installed on your host. I'm using rsyslog-2.0.2-3.fc8.
3. Tell the syslog daemon to listen for messages from remote devices
vi /etc/sysconfig/rsyslog
SYSLOGD_OPTIONS="-m0 -r"
4. Tell the rsyslog daemon to write the messages to cisco.log
vi /etc/rsyslog.conf
local7.debug /var/log/cisco.log
Mounting ISO images
The quick way to use your ISO images without burning a CD is to mount it directly to your filesystem.
mount -t iso9660 -o ro,loop /isopath/your-iso-image.iso /mnt/iso
Ripping data-cd from a CD-ROM
You can use dd to rip an ISO image from a CD-ROM:
dd if=/dev/cdrom of=your-cd-image.iso
Wednesday, November 5, 2008
Cisco Telepresence Suite for Public
Cisco is offering a pay-per-use Telepresence services called Cisco Telepresence Suites to public, so you can meet your friends, businesses and family at convenient location without buying your own Telepresence units. A much affordable solution to public.
Passed my CCIE R&S Lab
Haven’t update for a long time, because I’ve hide myself and lab’n days and nights. Finally I’ve passed my CCIE R&S Exam at my first attempt on 18 Sep 08. Feel so much relieved and so happy to back to normal life. For those who are working on your lab exam, Will share some of my notes later on here.
Wednesday, July 9, 2008
EIGRP – Summarization & Leak-map
EIGRP summarization is configured on interface:
R2(config-if)#int fa0/0
R2(config-if)#ip summary-address eigrp 100 2.2.4.0 255.255.252.0
Before summarization (2.2.4.0/22)
After summarization (2.2.4.0/22)
Leak-map is a features that allows us to advertise a component route (specific route + summary route) that you don’t want to suppressed by manual summarization.
ip summary-address eigrp 100 2.2.4.0 255.255.252.0 5 leak-map LEAKTEST
There are 3 rules to remember:
Rule 1 – Leak-map is configured to reference a route-map that DOES NOT EXIST
Result: Only summary route is advertised.
Rule 2 – Leak-map is configured to reference a route-map and it is referencing to an access-list that DOES NOT EXIST
Result: Summary route + ALL specific routes are advertised.
Rule 3 – Leak-map is configured to reference a route-map and it is referencing to an access-list that exists
Result: Summary route + networks permitted in ACL will be advertised. In this case the summary route + 2.2.5.0/24 permitted in ACL is advertised.