Upgrading firwmare on S4100 series Dell switches with OS 10

From Notes_Wiki

Home > Switch configuration notes > Upgrading firwmare on S4100 series Dell switches with OS 10

Upgrading via remote Linux server using scp and image install

To perform OS10 upgrade using CLI use below steps:

  1. For download the appropriate image for the switch using Dell Digit locker ( https://www.dell.com/SUPPORT/SOFTWARE/ )
  2. Download OS10 Enterprise Edition image, from the site in tar file format for the upgrade.
  3. Take configuration backup of current running config from exec mode
    copy running-configuration startup-configuration
    copy config://startup.xml config://<backup file name>
  4. Check the ONIE kernel version version in use:
    system "file /mnt/onie-boot/onie/vmlinuz*"
  5. Only if ONIE kernel version is 4.x.x proceed further with OS 10 upgrade using further steps
  6. Extract the downloaded tar file in above steps to get binary image
  7. Download the image (Only downloads, does not installs) to OS 10 switch using:
    image download file-url
    For example scp from a remote Linux machine
    image download scp://userid:passwd@hostip:/filepath
  8. Check image status
    show image status
  9. Only if running OS10 release 10.5.0.x or earlier and installing 10.5.2.0 or later now
    image cancel
  10. Get the path of images on the system
    dir image
  11. Install the 10.5.2.6 or later software image in EXEC mode.
    image install image-url
    For example:
    image install image://filename.bin
  12. See image status and boot detail
    show image status
    show boot detail
  13. Reload switch based on previous and new OS versions
    1. If System is presently running an OS10 release earlier than 10.5.1.0 and you are installing 10.5.1.9 or later
      reload
    2. System is presently running OS10 release 10.5.1.0 or later and you are installing 10.5.2.6 or later now
      boot system standby
      show boot detail
      reload
  14. After reboot switch automatically goes to ONIE -> ONIE update mode and updates CPLD, BIOS, Firmware etc.
  15. After update check version
    show version
  16. (Optionally) If you do not want to failback to older version and want both active and standby OS to be of the upgraded version then use:
    show boot detail
    image copy active-to-standby
    show boot detail


Refer:



Upgrading OS via ONIE upgrade option and pen drive

To upgrade firmware using pen drive and ONIE upgrade menu use:

  1. Extract the downloaded ZIP file in a particular folder
  2. Make pen drive (Min 4GB) as FAT32 format.
  3. From extract folder copy only .bin file to the pen drive
    Example: PKGS_OS10-Enterprise-10.5.3.4.108buster-installer-x86_64.bin
  4. Take running configuration back-up of the SW.
  5. Check the present OS10 version by:
    show version
  6. Reboot/Reload switch
    reload
  7. During boot time please select ONIE mode by up/down key in keyboard and press enter
  8. Select ONIE IOS upgrade
  9. Plugin USB drive
  10. Type below commands
    onie-discovery-stop
    mfdisk -l
    # (If error /bin/sh: mfdisk: not found showing) type below command
    mkdir /mnt/usb
    fdisk –l
    mount -t vfat /dev/sdb1 /mnt/usb
    cd /mnt/usb
    ls
    onie-nos-install <Paste copied file and press enter>
    Example:
    onie-nos-install PKGS_OS10-Enterprise-10.5.3.4.108buster-installer-x86_64.bin
  11. After install and reboot automatically you will found updated version of OS10 by command show version
  12. Configure/Restore the switch by help from running configuration back-up file.
  13. Save the configuration by
    write memory
    #OR
    copy running-configuration startup-configuration

Steps contributed by Suman Saha


Home > Switch configuration notes > Upgrading firwmare on S4100 series Dell switches with OS 10