ESP dSeries Workload Automation

 View Only
  • 1.  How to control login account in WADE

    Posted Jun 07, 2021 08:10 AM
    Hi all

    I have two questions as below.

    Q1]
    Is it possible to log in from desktop console or web console as schedmaster or admin, only certain I.P.?
    If possible, how can I set it up?

    Q2]
    Can I set the password policy after creating the user?
    For example, password has at least 10 alphabetic characters, including special characters and numbers, and the password change period is set to 3 months.

    Thanks


  • 2.  RE: How to control login account in WADE

    Broadcom Employee
    Posted Jun 08, 2021 04:44 AM
    Hi,

    For the first query 

    Can you please check if the below cli command helps.
    You can ban users logging from other ips .

    For second query , there is no such policy from dSeries side, however you can use LDAP integration with dSeries and use the policy from there.

    -> help clientsession
    Usage:
    CLIENTSESSION [DISCONNECT(disconnect)] [ALLOW(allow)] [USER("user")] [GROUP("group")] [PERIOD(period)] [LISTDISCONNECTED(listdisconnected)]

    Banning a user to open a client session to the server for a time period or reverting a ban.
    Example:
    CLIENTSESSION DISCONNECT|ALLOW USER|GROUP("NAME") [PERIOD(minutes)] [LISTDISCONNECTED]

    disconnect <bool>
    ban a user
    Specify one of the following: disconnect, disconnect(true), disconnect(false).
    Specifying disconnect is equivalent to specifying disconnect(true).
    If not specified, the default is disconnect(false).

    allow <bool>
    revert user ban
    Specify one of the following: allow, allow(true), allow(false).
    Specifying allow is equivalent to specifying allow(true).
    If not specified, the default is allow(false).

    user <string>
    The user to be banned|allowed.

    group <string>
    The group to be banned|allowed.

    period <int>
    time period in minutes for user ban.
    The default is 10 minutes.

    listdisconnected <bool>
    List banned users and groups.
    Specify one of the following: listdisconnected, listdisconnected(true), listdisconnected(false).
    Specifying listdisconnected is equivalent to specifying listdisconnected(true).
    If not specified, the default is listdisconnected(false).

    - Ravi Kiran