IBM Support

Management switches connection errors

General Page

Management switches connection warnings are displayed on the IBM Fusion switches page even though the cable connections are correctly placed between the node and the management switch.

How to identify the issue
 
Follow the steps to identify the issue:
  1. Run the following commands to get the RackGen value from the kickstart.
    oc get cm -n ibm-spectrum-fusion-ns | grep kickstart
    oc get cm <kickstart-name-obtained-from-1st-command> -n ibm-spectrum-fusion-ns -o yaml | grep rackGen
     

    Example output:

    oc get cm -n ibm-spectrum-fusion-ns | grep kickstart
    kickstart-rackgen2002                               1      32d
    oc get cm kickstart-rackgen2002 -n ibm-spectrum-fusion-ns -o yaml | grep rackGen
      "rackGen": 2,
    Note: If the rackGen value is 1, then you can ignore the hotfix instructions. However, if you are still seeing warnings about connections on the switch page, check whether the cables are properly connected to the correct ports.
     
  2. If the rackGen value is 2, then log in to the OpenShift Container Platform web console.

  3. Go to Administration > CustomResourceDefinitions.

  4. Enter the text "switch" in the search box, and select the CRD Switch from the search result.

  5. Go to Instances tab, click mgmt1-<rackname>.

  6. Go to YAML tab, and check whether you see the following status in the networkPortStatus. If you see following status, then follow the resolution steps.

    networkPortStatus:
      - actualConnection: slot IMM MGMT of control-1-ru3
        configured: "yes"
        expectedConnection: slot IMM MGMT of control-1-ru2
        inputPkt: "734216928"
        outputPkt: "690077672"
        portNumber: swp1
        portState: UP
        speed: 1G
      - actualConnection: slot IMM MGMT of control-1-ru4
        configured: "yes"
        expectedConnection: slot IMM MGMT of control-1-ru3
        inputPkt: "736902284"
        outputPkt: "687146599"
        portNumber: swp2
        portState: UP
        speed: 1G
      - actualConnection: slot IMM MGMT of compute-1-ru5
        configured: "yes"
        expectedConnection: slot IMM MGMT of control-1-ru4
        inputPkt: "735169192"
        outputPkt: "685877143"
        portNumber: swp3
        portState: UP
        speed: 1G
      - actualConnection: slot IMM MGMT of compute-1-ru6
        configured: "yes"
        expectedConnection: slot IMM MGMT of compute-1-ru5
        inputPkt: "735878695"
        outputPkt: "687029583"
        portNumber: swp4
        portState: UP
        speed: 1G
      - actualConnection: slot IMM MGMT of compute-1-ru7
        configured: "yes"
        expectedConnection: slot IMM MGMT of compute-1-ru6
        inputPkt: "736121148"
        outputPkt: "685764525"
        portNumber: swp5
        portState: UP
        speed: 1G
      - configured: "yes"
        expectedConnection: slot IMM MGMT of compute-1-ru7
        inputPkt: "743218107"
        outputPkt: "770580978"
        portNumber: swp6
        portState: UP
        speed: 1G
    
Resolution
Online installation
 
Follow the instructions to apply the hotfix in the online installed rack using either OpenShift Container Platform user interface or Command Line Interface (CLI):
OpenShift Container Platform user interface:
 
  1. Log in to the OpenShift Container Platform web console.
  2. Go to Operators > Installed Operators.
  3. In the Project drop-down, select ibm-spectrum-fusion-ns namespace.
  4. Click the IBM Storage Fusion installed operator that contains the CSV for the compute operator image to be patched.
  5. Click YAML tab.
     It opens a YAML editor screen.
  6. In the YAML editor screen, search for the label control-plane: isf-network-operator.

  7. In the control-plane: isf-network-operator label, scroll down to the image field, and replace the value with the following image.

    cp.icr.io/cp/fusion-hci/isf-network-operator@sha256:f5d8ae19c68bb2773a92fe89ac70a48f2037f46f2347df187b03b92381914003

Command Line Interface (CLI):
 
  1. Log in to the cluster using oc login command.
  2. Run the following command to get the CSV.
    oc get csv -n ibm-spectrum-fusion-ns

  3. Choose the correct IBM Fusion CSV to patch it with a new network operator image using the following command.
    oc edit csv <ibm-fusion-name> -n ibm-spectrum-fusion-ns

  4. Enter the text /control-plane: isf-network-operator to find the occurrence.

  5. In the control-plane: isf-network-operator label, scroll down to the image field, and replace the value with the following image.

    cp.icr.io/cp/fusion-hci/isf-network-operator@sha256:f5d8ae19c68bb2773a92fe89ac70a48f2037f46f2347df187b03b92381914003


Offline installation
 
Follow the instructions to apply the hotfix in the offline installed rack:
 
  1. Run the following commands to export the variables.
    export LOCAL_ISF_REGISTRY="<Your enterprise registry host>:<port>"
    export LOCAL_ISF_REPOSITORY="<Your image path>"
    export TARGET_PATH="$LOCAL_ISF_REGISTRY/$LOCAL_ISF_REPOSITORY"
    echo "$TARGET_PATH"

  2. Log in to the IBM Entitled Container Registry by using the IBM entitlement key:
    docker login cp.icr.io -u cp -p <your entitlement key>

  3. Run the command to log in to the docker registry with your enterprise registry credentials.
    docker login $LOCAL_ISF_REGISTRY -u <your enterprise registry username> -p <your enterprise registrty password>

  4. From the mirroring host, run the following commands to copy the below image to the artifactory.
    skopeo copy --insecure-policy --preserve-digests --all docker://cp.icr.io/cp/fusion-hci/isf-network-operator@sha256:f5d8ae19c68bb2773a92fe89ac70a48f2037f46f2347df187b03b92381914003 docker://$TARGET_PATH/cp/fusion-hci/isf-network-operator@sha256:f5d8ae19c68bb2773a92fe89ac70a48f2037f46f2347df187b03b92381914003

  5. Run the following steps either using OCP user interface or CLI:

    OpenShift Container Platform user interface:
    1. Log in to the OpenShift Container Platform web console.
    2. Go to Operators > Installed Operators.
    3. In the Project drop-down, select ibm-spectrum-fusion-ns namespace.
    4. Click the IBM Storage Fusion installed operator that contains the CSV for the compute operator image to be patched.
    5. Click YAML tab.
       It opens a YAML editor screen.
    6. In the YAML editor screen, search for the label control-plane: isf-network-operator.

    7. In the control-plane: isf-network-operator label, scroll down to the image field, and replace the value with the following image.

      $TARGET_PATH/cp/fusion-hci/isf-network-operator@sha256:f5d8ae19c68bb2773a92fe89ac70a48f2037f46f2347df187b03b92381914003


    Command Line Interface (CLI):
    1. Log in to the cluster using oc login command.
    2. Run the following command to get the CSV.
      oc get csv -n ibm-spectrum-fusion-ns

    3. Choose the correct IBM Fusion CSV to patch it with a new network operator image using the following command.
      oc edit csv <ibm-fusion-name> -n ibm-spectrum-fusion-ns

    4. Enter the text /control-plane: isf-network-operator to find the occurrence.

    5. In the control-plane: isf-network-operator label, scroll down to the image field, and replace the value with the following image.
      $TARGET_PATH/cp/fusion-hci/isf-network-operator@sha256:f5d8ae19c68bb2773a92fe89ac70a48f2037f46f2347df187b03b92381914003



 

[{"Type":"MASTER","Line of Business":{"code":"LOB69","label":"Storage TPS"},"Business Unit":{"code":"BU048","label":"IBM Software"},"Product":{"code":"SSXEFDS","label":"IBM Fusion HCI Appliance Software"},"ARM Category":[{"code":"a8m3p0000000rX7AAI","label":"HW"}],"Platform":[{"code":"PF025","label":"Platform Independent"}],"Version":"2.9.0"}]

Document Information

Modified date:
04 July 2025

UID

ibm17231399