The CAKSNMIG program can be used to convert CICS Signon Table information into CA Top Secret commands.
Note: The CAKSNMIG program should only be used if you are converting CICS internal security to CA Top Secret.
CICS encourages administrators to convert existing tables from RDM to RDO. In some of its latest releases, no Signon Table (SNT) can even be assembled. CA encourages administrators to convert existing SNT macros to external security commands using the CAKSNMIG utility, whose JCL is shown in the following:
//TRYIT EXEC PGM=CAKSNMIG,PARM=NOCRE //STEPLIB DD DSN=your.tss.library,DISP=SHR //DFHSNT DD DSN=yourcics.table.loadlib,DISP=SHR //ADDTO DD DSN=your.output.addto.lib,DISP=SHR //TSSCMDS DD DSN=your.output.create.lib,DISP=SHR //SYSPRINT DD SYSOUT=* //SYSUDUMP DD SYSOUT=*
The following DD statements must be completed:
The file containing the CA Top Secret load library.
The file containing the DFHSNT load module to be converted.
The file containing the TSS ADDTO statements for OPID, OPPRTY, and OPCLASS keywords.
Note: The LRECL for the output statements must be 80, the BLKSIZE is determined by the Device type.
The file containing the TSS CREATE statements unless PARM=NOCRE was coded.
Note: The LRECL for the output statements must be 80, the BLKSIZE is determined by the Device type.
The listing of output of both files.
CAKSNMIG takes the load library containing the assembled SNT as input. The program can be executed with and empty PARM or with PARM=NOCRE:
It is the administrator's responsibility to edit these files for re‑submission through TSO/batch SYSTSIN. All messages generated for this program are documented in the Messages and Codes Guide.
Sample output from TSSCMDS file is provided in the following.
TSS CREATE(MASTER) TYPE(USER)
NAME('CICS USER')
DEPARTMENT(CICSDEPT)
PASSWORD(MASTER,,EXP)
TSS ADDTO(MASTER) OPIDENT(MAS)
OPPRTY(255)
OPCLASS(1,2,6,18)
TSS CREATE(SAMPLE) TYPE(USER)
NAME('CICS USER')
DEPARTMENT(CICSDEPT)
PASSWORD(SAMPLE,,EXP)
TSS ADDTO(SAMPLE) OPIDENT(SAM) ‑
OPCLASS(1,10,15,24)
|
Copyright © 2014 CA Technologies.
All rights reserved.
|
|