Book Image

Cisco UCS Cookbook

By : Victor Wu
Book Image

Cisco UCS Cookbook

By: Victor Wu

Overview of this book

Cisco Unified Computing System (UCS) is a data center server platform that is used for computing, deploying, and storing resources in data center environments. This cookbook aims to teach you about various tasks you can implement to improve your existing method of configuring and deploying UCS. You will start by learning how to upgrade your firmware on Brocade and Cisco Fibre Channel Switch and will move on to enhance your knowledge of LAN connectivity. We will then discuss how to configure Windows 2008 and 2012 local boot in Cisco UCS. Next, you will learn how to install the operating system on Cisco UCS and use Cisco UCS Power Calculator to calculate the UCS consumption. Finally, we’ll take a look at backup solutions. By the end of the book, you will know several ways to build and compute in data center environment using Cisco UCS.
Table of Contents (14 chapters)
Cisco UCS Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Firmware upgrade on the Cisco Fibre Channel Switch


In this recipe, we will learn how to upgrade NX-OS on Cisco MDS SAN Switch from version 5.2.8e to 6.2.13. The model we are using is the Cisco MDS-9148.

Getting ready

We need to prepare one TFTP Server for the Cisco NX-OS upgrade, which can either be a physical server or a virtual server.

The TFTP Server has the following requirements:

  • The Operation System platform is Microsoft Windows XP or 7

  • Two vCPUs at 2 GHz if it is a virtual server, one CPUs at 2 GHz if it is a physical server

  • 2 GB memory and 6 GB disk space

  • The IP address of this FTP Server can access the management network of Cisco MDS Switch (MDS-9148)

How to do it…

In this recipe, we will learn how to download NX-OS on a Cisco website and upgrade NX-OS on Cisco Fibre Channel Switch (MDS-9148).

Download

Following are the steps to download NX-OS:

  1. Navigate to https://software.cisco.com/download/navigator.html and log in to My Cisco account. Select Products, the details are as shown in the following screenshot:

    Note

    Note: Access to download Cisco NX-OS is limited to users with an active Technical Support Contract with Cisco.

  2. Download MDS NX-OS Kick Start 6.2(13) and NX-OS system images 6.2(13) on the software menu:

  3. After finishing the NX-OS kick-start and system image download, the example of the file name will be m9100-s3ek9-kickstart-mz.6.2.13.bin and m9100-s3ek9-mz.6.2.13.bin.

How it works…

Upgrade

We assume that you are installing TFTP 3CDaemon on Microsoft Windows XP:

  1. First, prepare one FTP Server 3CDaemon, which is an FTP freeware, on Microsoft Windows XP. Then set up the firmware upload path C:\cisco\ and store all NX-OS firmware files on this path:

  2. Log in to the MDS-9148 Switch with SSH, then copy the Cisco NX-OS kick-start and system image from the TFTP location to one of the two bootflashes. Issue the following command to copy the files to the bootflash:

    switch# copy tftp://<server IP address>/<filename in TFTP> bootflash:<image filename>
    

    Example:

    switch# copy tftp://192.168.1.2/ m9100-s3ek9-kickstart-mz.6.2.13.bin bootflash:/m9100-s3ek9-kickstart-mz.6.2.13.bin
    switch# copy tftp://192.168.1.2/ m9100-s3ek9-mz.6.2.13.bin bootflash:/m9100-s3ek9-mz.6.2.13.bin
    
  3. Verify the running version of NX-OS for MDS-6148 by issuing the show version command. You can see that the running version is 5.2.(8e).

  4. Back up the current Switch configuration into TFTP by issuing the following command:

    switch# copy startup-config tftp://<server IP address>/<startup-config_switch name_date>
    Example:
    switch# copy startup-config tftp:// 192.168.1.2/<startup-config_MDS-6148
    
  5. Issue the following command to perform the upgrade:

    switch# install all kickstart bootflash:m9100-s3ek9-kickstart-mz.6.2.13.bin system bootflash: m9100-s3ek9-mz.6.2.13.bin
    
  6. After the process has verified the uploaded files, press Y to continue the installation.

  7. After the installation is complete, it will drop your SSH session. Login and perform the show version to verify that the upgrade has been completed successfully. You can see kick start and the system is version 6.2(13).