Archive for the 'Cisco' Category
Training is Complete

Finished CIPT training today and now it’s time to build my lab. I have had a VMWare environment running for a while, and now it’s time to start putting it to use.

Hopefully I will be able to have CUCM, Unity and ties to Exchange.

I just need some phones now. Any leads?

Training

In training this week on how to administer CallManager 6/7. Pretty decent so far.

Here are some of the links and posts that appear to be pretty damn handy:

http://www.globalknowledge.com/training/whitepaperlist.asp?pageid=502&wpcat=206&country=United+States

http://ephoneplanet.com/

Global Knowledge UC Blog

Networker’s 2007

We just got back from Networker’s 2007. Had some fun, it was nice to get away from the day to day stuff and catch up with the guys.

Album is here.

Networker's

Cisco to AD auth

Here’s yet another article from Scott. This one is regarding authentication of IOS 12.2 to Active Directory. This is definitely a much cheaper route to go, than Cisco’s ACS server or other methods.

Article Here.

VMWare + Teaming + VLAN’s

Scott is probably one of the smartest people I know and has published a great article on his blog about how to get ESX Server and a Cisco 3560 to play nicely and optimally. blog.scottlowe.org

PIX SSH Key Initialize

ca zeroize rsa
ca gen rsa key 512
show ca mypubkey rsa
ca save all
ssh 0 0 outside
ssh timeout 60

Config change logging

Here’s some handy commands to log changes to your switches and routers via the local log and syslog:

archive
log config
logging enable
logging size 200
hidekeys
notify syslog

To view it back:
show archive log config provisioning– this actually parses the command into a config that can be copied and pasted in.

Cisco Basic Commands

Here’s some basic commands that every Cisco Engineer should know. However, they are so basic, that they are often overlooked:

Disable DNS Lookup
no ip domain-lookup
——————————-

Disable Switches/ Routers from being rude
line con 0
logging synchronous

If you are in the middle of typing something, the device will echo your command back to you once it’s done spitting it’s garbage out.
——————————-

setting console speed
line con 0
speed 115200

——————————-

command replacements:
wr---copy run start
wr erase---erase start
who---show users
where---show sessions

——————————-

Timestamping your logs
service timestamps log datetime localtime
——————————-

setting the clock
clock set 1:59:00 2 May 2007
clock timezone EST -5
clock summer-time EDT recurring

——————————-

Erasing interface config info
default int gig0/1
——————————-

fast debug recovery
u all
——————————-

Editing access-lists
Make sure that you are using an extended access list for this one
Router(config)#ip access-list extended TEST
Router(config-ext-nacl)#10 permit ip host 10.1.1.1 host 10.6.5.4
Router(config-ext-nacl)#20 permit icmp any any
Router(config-ext-nacl)#30 permit tcp any host 10.1.1.1
Router(config-std-nacl)#15 permit ip 10.5.5.0 0.0.0.255 any
Router#show access-list TEST

10 permit ip host 10.1.1.1 host 10.6.5.4
15 permit ip 10.5.5.0 0.0.0.255 any
20 permit icmp any any
30 permit tcp any host 10.1.1.1

Cisco’s VOIP Implementation

Here’s a link to a pretty daunting PDF that Cisco put out about their own IPT implementation. Reader beware, this is definately not for the faint of heart.

http://www.cisco.com/web/about/ciscoitatwork/downloads/ciscoitatwork/pdf/cisco_ip_telephony.pdf

CallManager on Non-MCS Hardware

This is a set of instructions that someone had posted to install CallManager on hardware other than their “certified” equipment for testing.

Step 1: Download a Windows utility called FDIMAGE.EXE. You can find this on pretty much any UNIX/ Linux site.

Step 2: Insert the CallManager Hardware Detect CD-ROM into the system

Step 3: Insert a blank floppy disk

Step 4: Open up a DOS window and type fdimage d:\bootimg.bin a:. This will copy the boot image from the Hardware detect CD-ROM to the floppy.

Step 5: On the floppy, edit the autoexec.bat file and change the following:
locate sssksys.ini
add:set XIMAGE=x345
goto IBMx345

Step 6: Reboot and make sure the a: is setup as yoru boot drive. Also ensure the CD is still in there.

Step 7: Everything after this is business as usual.