Managed Object Procedure (MOP) for Upgrading Dell Open Networking Switch OS10 to Latest Firmware on an Air-Gapped System
Purpose: This MOP outlines the steps to upgrade the firmware on a Dell Open Networking (OS10) switch to the latest version on an air-gapped system (no internet connection). The upgrade will be performed by transferring the firmware image using Secure Copy (SCP) from a laptop directly connected to the switch's dedicated management interface.
Service Impact Summary:
- The switch's management interface will be unavailable during the upgrade process, which can range from a few minutes to half an hour depending on the switch model and firmware size.
- Depending on the firmware version being upgraded from, there might be brief service interruptions on data plane ports while the switch reboots after the upgrade.
Backup Procedure:
-
Configuration Backup:
- Connect to the switch using the command-line interface (CLI).
- Enter the following command to capture the running configuration:
Bashcopy running-config startup-config
- This will save the current switch configuration to the startup-config file, which is used to automatically load the configuration when the switch reboots.
-
Software Image Backup (Optional):
- Download the currently running firmware image from the switch using SCP (refer to "Transferring the Firmware Image" section for SCP details). This step is optional but recommended in case of any rollback scenario.
Upgrade Procedure:
-
Preparation:
- Download the latest firmware image compatible with your switch model from Dell's support website (https://www.dell.com/support/home/en-us). Ensure the downloaded image is suitable for air-gap deployment.
- Connect your laptop directly to the switch's dedicated management port using a standard Ethernet cable.
- Verify network connectivity between the laptop and the switch's management interface. You can use ping or SSH to test connectivity.
-
Transferring the Firmware Image:
- On your laptop, initiate an SCP session to transfer the downloaded firmware image to the switch. You will need the switch's IP address, username, and password for the management interface.
Bashscp <firmware_image_filename> <switch_ip_address>:/path/to/store/on/switch
- Replace
<firmware_image_filename>
with the actual filename of the downloaded firmware image. - Replace
<switch_ip_address>
with the management IP address of the switch. - Replace
/path/to/store/on/switch
with the desired location on the switch to store the firmware image. The default location might be/flash/
.
-
Upgrading the Firmware:
- Login to the switch's CLI using SSH or the console port.
- Enter the following command to install the transferred firmware image:
Bashinstall software image-path /path/to/firmware/image.bin force
-
Replace
/path/to/firmware/image.bin
with the actual path where you uploaded the firmware image in the previous step. -
The
force
option is used to overwrite any existing firmware with the same version. -
The switch will prompt you to confirm the upgrade process. Enter
y
to proceed. -
The switch will download and install the new firmware. The switch might reboot one or more times during the installation process.
-
Verification:
- After the upgrade is complete, the switch will automatically reboot.
- Once the switch is back online, log in to the switch's CLI and verify the firmware version using the following command:
Bashshow version
- The output should display the newly installed firmware version.
Rollback Procedure:
- If you encounter any issues after the upgrade, you can perform a rollback to the previous firmware version.
- Ensure you have a backup of the previously running firmware image (refer to the "Backup Procedure" section).
- Follow steps 2 and 3 from the "Upgrade Procedure" section to transfer the backup firmware image to the switch and install it using the
install software
command.
Important Notes:
- This MOP is a general guideline and might need adjustments based on your specific switch model and firmware version.
- Always refer to the Dell documentation for your specific switch model for detailed upgrade instructions and supported firmware versions.
- Carefully review the release notes of the new firmware version to understand any potential risks or limitations before proceeding with the upgrade.
- Perform the upgrade during a maintenance window to minimize service disruption.
By following this MOP, you can securely upgrade the firmware on your Dell Open Networking switch in an air-gapped environment. Remember to document the entire process, including the firmware version used before and
Comments
Post a Comment