User Profile JCL Examples

You can define user profile JCL to execute the platform server user profile utility FUSPROF.

See the following examples for your reference.
  • To add a user profile entry:
    TYPE=ADD
    IPADDR=127.240.240.1
    REMOTE_USER=UNIXUSER
    REMOTE_PASSWORD=UNIXPASS
  • To create a user profile entry:
    Note: If the profile already exists, the create action fails.
    TYPE=CREATE
    IPADDR=127.240.240.1
    REMOTE_USER=UNIXUSER
    REMOTE_PASSWORD=UNIXPASS
  • To replace a user profile entry:
    Note: If the profile already exists, the replace action fails.
    TYPE=REPLACE
    IPADDR=127.240.240.1
    REMOTE_USER=UNIXUSER
    REMOTE_PASSWORD=UNIXPASS
  • To delete a user profile entry:
    TYPE=DELETE
    IPNAME=ACCTUSER.YOUR.COMPANY.COM
    REMOTE_USER=
  • To list user profile entries:
    TYPE=LIST
    NODE=NTNODE
  • To add a default profile for all nodes for a user:
    TYPE=ADD
    NODE=*ALLNODE
    REMOTE_USER=UNIXUSER1
    REMOTE_PASSWORD=UNIXPASS1
  • To add a default profile for all users for a node:
    Note: Only the platform server administrator can issue this request.
    TYPE=ADD
    LOCAL_USER=*ALLUSER
    NODE=NTNODE
    REMOTE_USER=UNIXUSER1
    REMOTE_PASSWORD=UNIXPASS1
  • To add a responder user profile entry:
    TYPE=ADD
    IPADDR=127.240.240.1
    LOCAL_USER=USER123
    REMOTE_USER=UNIXUSER
    REMOTE_PASSWORD=UNIXPASS
    RESPONDER=YES

    If a request comes in from IP address 127.240.240.1 and the user ID is UNIXUSER and the password is UNIXPASS, then platform server uses the user ID USER123 for the transfer request.

  • To add a default responder user profile for all users of a node:
    TYPE=ADD
    IPADDR=127.240.240.1
    LOCAL_USER=USER123
    REMOTE_USER=*ALLUSER
    REMOTE_PASSWORD=UNIXPASS
    RESPONDER=YES

    If a request comes in from IP address 127.240.240.1 for any user ID, and the password is UNIXPASS, then the platform server uses the user ID USER123 for the transfer request.

  • To add a default responder user profile for all users of a node without password checking:
    TYPE=ADD
    IPADDR=127.240.240.1
    LOCAL_USER=USER123
    REMOTE_USER=*ALLUSER
    RESPONDER=YES

    If a request comes in from IP address 127.240.240.1 for any user ID, then the platform server uses the user ID USER123 for the transfer request. No password checking is done, because the REMOTE_PASS operand is not configured.