User Profile JCL Examples
You can define user profile JCL to execute the Platform Server user profile utility
FUSPROF.
- 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
createaction 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
replaceaction 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.1and the user ID isUNIXUSERand the password isUNIXPASS, then Platform Server uses the user IDUSER123for 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.1for any user ID, and the password isUNIXPASS, then the Platform Server uses the user IDUSER123for 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.1for any user ID, then the Platform Server uses the userID USER123for the transfer request. No password checking is done, because theREMOTE_PASSoperand is not configured.