Skip to Main Content
IBM System Storage Ideas Portal


This portal is to open public enhancement requests against IBM System Storage products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Under review
Created by Guest
Created on Jul 9, 2025

Create a hidden command to allow a change for the number of concurrent SSH connections to SVC/FlashSystem

The current limits of SVC/FlashSystem software to the admin connection limit the ability to run ansible playbooks and/or ssh automations during cluster migrations and can limit the ability to automate failovers of a large number of systems during an outage,

The Ethernet connection Storage Systems limit the number of concurrent SSH sessions to 15 new connections per sec with a burst limit of 3 and a maximum of 32 active SSH connections. Attempts to open multiple concurrent SSH sessions will fail after the user log-on limit has been reached. An existing active connection must first be closed before a new connection to the cluster will be accepted.

Please provide a command to alter the SSH session limitations.

Idea priority High
  • Guest
    Jul 11, 2025
    Below is another way to get this info (by using localhost from ansible controller and REST API) without ssh. If speed/parallelism is required, async/poll can be added. ansible collection version 2.7.4 adjusts the speed based on REST API throlling already.
    
    ---
    - name: Get volume data from FlashSystem
      hosts: all
      connection: local
      gather_facts: false
     
      tasks:
        - name: Get all volume data for a host
          ibm.storage_virtualize.ibm_svc_info:
            clustername: "{{ src_stg }}"
            username: "{{ flash_username }}"
            password: "{{ flash_password }}"
            log_path: /tmp/ansible.log
            gather_subset: hostvdiskmap
            objectname: "{{ item }}"
          loop: "{{ lpar_list }}"
          register: flash_info
          
    Please let me know whether that helps the case.
  • Guest
    Jul 10, 2025

    Having run into this, running any Ansible playbook against an inventory of more than one will cause connection errors when hitting the FlashSystem.  So every play that I have now, that uses ibm.storage_virtualize I add a throttle: 1.

     

    For example, something simple like this:

    ---
    - name: Get volume data from FlashSystem
      hosts: all
      connection: local
      gather_facts: false
     
      tasks:
        - name: Get all volume data for a host
          ibm.storage_virtualize.ibm_svc_info:
            clustername: "{{ src_stg }}"
            username: "{{ flash_username }}"
            password: "{{ flash_password }}"
            log_path: /tmp/ansible.log
            gather_subset: hostvdiskmap
            objectname: "{{ lpar_name }}"
          register: flash_info

     

    Will cause a failure on one host (with an inventory of two):

    PLAY [Get volume data from FlashSystem] *******************************************************************************************************************************************************************************
     
    TASK [Get all volume data for a host] *********************************************************************************************************************************************************************************
    fatal: [aix_test]: UNREACHABLE! => {"ansible_facts": {"discovered_interpreter_python": "/usr/bin/python3"}, "changed": false, "msg": "Failed to obtain access token", "unreachable": true}
    ok: [aix_stby]

    Adding throttle: 1 does get around this limitation