UNSOLVED

OscarTroncosod51999

updated

18 days ago

O

OscarTroncosod51999

1 Rookie

4 Posts

15 Points

0

94

August 7th, 2026 18:32

emc vnx 5200 authtenication errors with user a

"Hi everyone, I have an EMC² VNX 5200 storage system, and while checking the logs under System > Monitoring and Alerts > SP Event Logs > Show SP A Event Logs, I noticed the following error.

Client is not allowed to login trial because login failure time exceeded the limits from client 128.221.252.101with username a 

This is happening every minute. I haven't been able to find where the error is coming from; 'user a' doesn't exist anywhere. Does anyone know how to trace where this might be misconfigured so I can fix it?"

  • DELL-Sam L

    Community Manager

    8058 Posts

    34386 Points

    0

    0

    Posted August 10th, 2026 12:06

    Hello OscarTroncosod51999,

    This error means the user account "a" has been locked out due to exceeding the maximum number of failed login attempts from IP 128.221.252.101. This is a security feature to prevent brute-force attacks. Now you can unlock the account, or modify the lock out setting if you feel the need to. Once of the first thing that I would do is to unlock the account if the account is needed to be used. You can unlock the account by using Navisphere cli and running the following commands:

    1. Unlock the Account via Navisphere CLI (from a different workstation)

    ```bash

    # Check the current security settings

    /opt/Navisphere/bin/naviseccli -h <SP_IP> -user sysadmin -password <password> security -failedlogin -list

     

    # Clear the failed login attempts for the user

    /opt/Navisphere/bin/naviseccli -h <SP_IP> -user sysadmin -password <password> security -failedlogin -reset -user a

     

    2. Check Lockout Policy

    ```bash

    # View the lockout policy settings

    /opt/Navisphere/bin/naviseccli -h <SP_IP> security -failedlogin -list

    ```

    This shows:

    - Maximum failed attempts allowed

    - Lockout duration

    - Current failed attempt count

     

    3. Modify Lockout Policy (if needed)

    ```bash

    naviseccli -h <SP_IP> security -failedlogin -modify -maxAttempts <number> -lockoutDuration <minutes>

    ```

     

    If **all** admin accounts are locked, you may need to:

    - Wait for the lockout timer to expire

    - Access the **Service Port** (SPA/SPB) directly

    - Contact **Dell EMC Support** for assistance with a service-level reset

  • OscarTroncosod51999

    1 Rookie

    4 Posts

    15 Points

    0

    0

    Posted August 10th, 2026 15:33

    @DELL-Sam L​ Thank you for your prompt response. I am very grateful for your help. I have already run the tests you sent me. What I would like to know is which service uses the username 'a' so I can fix where it is configured, ensuring it stops trying to connect with a user that does not exist anywhere. How could I trace which services are checking the status of the SPs

  • DELL-Sam L

    Community Manager

    8058 Posts

    34386 Points

    0

    0

    Posted August 10th, 2026 19:58

    Hello OscarTroncosod51999,

    What is the current OE the is running on your VNX 5200?

  • OscarTroncosod51999

    1 Rookie

    4 Posts

    15 Points

    1

    0

    Posted August 10th, 2026 20:25

    @DELL-Sam L​ Hi thanks for you response, my current OE is 05.33.009.5.184 and File Software version is 8.1.9-184

  • DELL-Sam L

    Community Manager

    8058 Posts

    34386 Points

    1

    1

    Posted August 11th, 2026 20:11

    Hello OscarTroncosod51999,

    Thanks for the information. Let me look into this to see what I can find out.