Search This Blog

Thursday, 27 January 2011

Upgrade IOS on Cisco 2960 Switch

Just a quick note on the new upgrade process for the 2960 range of switches.


Download the image file from the TFTP server to the switch. If you are installing the same version of software that is currently on the switch, overwrite the current image by entering this privileged EXEC command:

Switch# archive download-sw /overwrite /reload
tftp:[[//location]/directory]/image-name.tar
The /overwrite option overwrites the software image in flash memory with the downloaded one.

The /reload option reloads the system after downloading the image unless the configuration has been changed and not saved.

The /allow-feature-upgrade option allows installation of an image with a different feature set (for example, upgrade from the IP base image to the IP services image).

For //location, specify the IP address of the TFTP server.

For /directory/image-name.tar, specify the directory (optional) and the image to download. Directory and image names are case sensitive.

This example shows how to download an image from a TFTP server at 198.30.20.19 and to overwrite the image on the switch:

Switch# archive download-sw /overwrite
tftp://198.30.20.19/c3750-ipservices-tar.122-50.SE.tar
You can also download the image file from the TFTP server to the switch and keep the current image by replacing the /overwrite option with the /leave-old-sw option.

Thursday, 23 December 2010

Blackberry Express Server Web Console will not load after Maintenance Update 5.02

If you are intending to deploy the BES Express Server Maintenance Update 5.02 to your BES Server 5.01 then make sure you do so as the BESADMIN user. If you install the update as any other user the update will install correctly but you will find that the Blackberry Administration Service Console will not load and Internet Explorer will display "Page cannot be displayed".

I suffered this myself preferring to make installations with a specific Domain Administrator account and found that my console was no longer functioning. After much searching on Blackberry Support and finding others in the same situation via Google a colleague suggested he had found that Blackberry updates should always be installed as the BESADMIN user.

It is not really how the idea of security groups should work but it will save you no end of head scratching if you make sure you use the BESADMIN account, if you have already installed as another user just re apply as BESADMIN and the issue will be resolved.

Wednesday, 15 December 2010

High Host CPU on Windows 2000 Virtual Machine in vSphere

I had a Windows 2000 Server that I had used a Physical to Virtual migration with the VM Converter tool, the original physical server had two CPUs and when I mgrated I dropped this to one vCPU as the server needed very little resource.

The problem arose that the Windows 2000 Server was consuming a high percentage of the host CPU usage while the VM Guest itself as idling at 0% CPU usage. The problem I found by researching the VMWare KB articles is that the Windows 2000 Server will try to set itself into idle mode when not in use, in a physical server this results in low power consumption, in a virtual server this results in low CPU usage on the host.

However my server was not able to enter idle mode and so was stuck trying to do so and was consuming a high percentage of the host CPU. The issue was that I had not changed the ACPI HAL for the server in Windows 2000 to tell it it was no longer a dual CPU server, I changed this by entering the Device Manager and then expanding the Computer object, below this is the ACPI Multi Processor object.

If you enter the properties of this object you can from the Advanced Tab choose to update the driver, here you choose to select the driver from a list and show all hardware that is compatible. The list will then show the Uni Processor HAL object that can be used.

I added this object and then restarted the server and the CPU use on the host has now reduced to a normal idle level.

Friday, 10 December 2010

Reset Alarms in vSphere 4.1

I had an alarm trigger recently on a Windows 2000 VM I have in a vSphere 4.1 Cluster, the CPU spike was only temporary and I could see that the actual cpu usage had returned to normal but the alarm was still showing in Vcenter and I could not clear the alarm.

This can be done simply by finding the parent for the alarm and then disabling and re enabling the alarm, it looks like a possible bug in vSphere so this is a quick work around that does not have any effect on the live service.

Thanks to http://www.virtualizetips.com/2010/04/how-to-clear-alarms-in-vsphere-vcenter-4/ for the information.

Tuesday, 7 December 2010

HP MSA 2324i SAN Array Controller Unavailable

We had deployed a new HP MSA 2324i SAN Array recently and after about 2 months we found Controller A to be unavailable, the storage network was still functioning but we could not access the Controller A.

We connected to Controller B and could see that Controller A was offline but we could not restart or shutdown the controller, the event log showed that the Controller had been taken offline and could not be restarted.

I had the Controller replaced under our support with HP and when we installed the replacement we checked the firmware and could see that the latest firmware had a critical status that explained that the controller would actually become degraded by the firmware unless we upgraded.

This is explained in this HP article.

If you have any MSA 2000 array series SAN then you must upgrade the firmware or risk the loss of both Controllers in the future.

Tuesday, 30 November 2010

Send As permission for Exchange 2007 Distribution Group

It can be quite handy to be able to send an email as a distribution group sometimes, allowing several users in a group to appear as one generic department email.

The task is a little different to Exchange 2003 as there is no GUI available for this task and it must be completed with the EMS.

The command you need is

Get-DistributionGroup groupname | add-adpermission -user username -extendedrights -Send-As

Once done you then have to wait, it can take some time for this change to propagate so be patient!

Monday, 29 November 2010

VMware vCenter Error Call “PropertyCollector.RetrieveContents” for object “propertyCollector” on vCenter Server failed

I had this error randomly when working on vSphere Client 4.1 to a vSphere 4.1 installation. It turns out this is caused because I had an ISO image mapped to a VM CD drive and the ISO file was no longer in the datastore. I removed the ISA from the VM settings and the problem went away.

Thanks to Yuri's Technology Blog for this, I just wanted to re post this.

http://yuridejager.wordpress.com/2010/07/24/vmware-vcenter-error-call-propertycollector-retrievecontents-for-object-propertycollector-on-vcenter-server-failed/