ASA 5510 IOS 8.x ASDM firewall dashboard IOS commands

As of 8.x, the ASDM has some excellent features to allow you to track down top talkers and get a better view into your traffic flows, but each of these features (especially the Top 10 Services) uses a good bit of RAM. If you are running a 5510 or smaller, that can cause you to […]

Enable DOS FTP client through ASA

This configuration allows both active mode and pseudo-passive mode connections from the DOS FTP client provided with windows on a cisco ASA firewall. It has been tested with ASA code 7.2(3) !–Enable FTP Passive modeftp mode passive !–Create inspection_default class-map to match the ASA’s default inspection trafficclass-map inspection_defaultmatch default-inspection-traffic !–Add the ‘inspection_default’ class to the […]

Password recovery procedure Cisco catalyst fixed configuration layer 2 and 3 switches

IntroductionThis document describes the password recovery procedure for the Cisco Catalyst Layer 2 fixed configuration switches 2900XL/3500XL, 2940, 2950/2955, 2960, and 2970 Series, as well as the Cisco Catalyst Layer 3 fixed configuration switches 3550, 3560, and 3750 Series. Before You BeginConventionsFor more information on document conventions, see the Cisco Technical Tips Conventions. PrerequisitesThere are […]

Host-based routes Windows Server 2000 2003 XP

To display the entire contents of the IP routing table, type: route print To display the routes in the IP routing table that begin with 10., type: route print 10.* To add a default route with the default gateway address of 192.168.12.1, type: route add 0.0.0.0 mask 0.0.0.0 192.168.12.1 To add a route to the […]

Linux NTP Configuration

SETTING DATE MANUALLY WITH NTP====================================ntpdate -u 130.207.244.240clock –systohcdateclock CONFIGURING /etc/NTP.CONF====================================server 130.207.244.240 FORCING NTP updates (syncs w/ NTP server at X:27 every hour)====================================mkdir /root/bin vi /root/bin/forceNTP.sh/usr/sbin/ntpdate -u 130.207.244.240/sbin/clock –systohc chmod 744 /root/bin/forceNTP.sh crontab -e27 * * * * /root/bin/forceNTP.sh >/dev/null 2>&1 ~~~~~~~~ALTERNATE PROCESS RUN THESE COMMANDS=======================================================================mkdir /root/binecho “/usr/sbin/ntpdate -u 130.207.244.240” > /root/bin/forceNTP.shecho “/sbin/clock –systohc” >> /root/bin/forceNTP.shchmod […]