### Example AT-TLS Parameter Setup Source: https://www.ibm.com/docs/en/cloud-tape-connector/2.1_topic=messages-cuzs165e Provides an example configuration for AT-TLS parameters, which is crucial for securing communication with the Cloud Tape Connector. This setup ensures encrypted data transfer. ```text FECCFG * // PARMLIB DD DSN=SYS1.PARMLIB,DISP=SHAR // DD DSN=FEK.SFECCFG,DISP=SHAR // DD DSN=FEK.SFECCFG(FECCFG),DISP=SHAR ``` -------------------------------- ### AT-TLS Parameter Setup Example Source: https://www.ibm.com/docs/en/cloud-tape-connector/2.1_topic=connector-cuz3308i Provides an example of an AT-TLS (Application Transparent Transport Layer Security) parameter setup. This configuration is crucial for securing communication between the Cloud Tape Connector and cloud storage services. ```text SecTls=ON KeyRing=MYKEYRING.KRL RingOwner=MYUSERID RemotePort=443 RemoteHost=my.cloud.storage.com CertUsage=CLIENT ChlType=AUTO Rules= SSL/TLS Configuration for Cloud Tape Connector: This section defines the AT-TLS rules to enable secure communication. Ensure the KeyRing and RingOwner are correctly specified. RemotePort is typically 443 for HTTPS. CertUsage should be CLIENT when the z/OS system acts as a client. ``` -------------------------------- ### Example of AT-TLS parameter setup - JCL Example Source: https://www.ibm.com/docs/en/cloud-tape-connector/1.1_topic=cctc-step-14-define-started-task-your-security-system This snippet provides an example of AT-TLS (Applicability Transmission Level Security) parameter setup within the Cloud Tape Connector configuration. It demonstrates how to define SSL/TLS security options for secure communication. ```JCL ********************************************************************* * * * Example of AT-TLS parameter setup for the Cloud Tape Connector. * * * ********************************************************************* //IQVCSECU JOB (24,6,22,30),MSGCLASS=X,NOTIFY=&SYSUID //********************************************************************* //* The following JCL shows an example of how to configure AT-TLS * //* for the Cloud Tape Connector. * //********************************************************************* //DEFINE EXEC PGM=PZLCFGUT,PARM='INITIATE' //SYSPRINT DD SYSOUT=* //SYSOUT DD SYSOUT=* //SYSUDUMP DD SYSOUT=* //********************************************************************* //* The following statements define the AT-TLS policy rules. * //* Ensure that the ENVAR parameter points to your AT-TLS policy file.* //********************************************************************* //SYSIN DD * RULE 'CTC_RULE' LOCAL PORT 12345 /* Port used by Cloud Tape Connector */ REMOTE ADDRESS * /* Any remote address */ DIRECTION INBOUND /* Incoming connections */ SECURE /* Enable TLS */ CLIENTAUTH REQUIRED /* Require client authentication */ TRUSTED CERTIFICATE LABEL 'YOUR.TRUSTED.CERT.LABEL' KEYRING 'YOUR.KEYRING.NAME' MATCH(ACCESS) CONDITION(USERID EQ 'CTCSVC') /* User ID for the started task */ ACTION(PLUGIN) PLUGIN(ATSSL) PLUGINPARMS( GROUPID(YOUR_ATSSL_GROUP_ID) POLICYGROUP(YOUR_POLICY_GROUP) POLICYLABEL(YOUR_POLICY_LABEL) ) /* //********************************************************************* //* Note: Replace placeholders like YOUR.TRUSTED.CERT.LABEL, * //* YOUR.KEYRING.NAME, YOUR_ATSSL_GROUP_ID, YOUR_POLICY_GROUP, * //* and YOUR_POLICY_LABEL with your actual values. * //********************************************************************* ``` -------------------------------- ### Example AT-TLS Parameter Setup Source: https://www.ibm.com/docs/en/cloud-tape-connector/2.1_topic=messages-cuz929e This snippet provides an example of configuring AT-TLS (Applicability Tuning for Transport Layer Security) parameters for secure communication. It outlines the necessary directives and their expected values for setting up a secure connection. ```shell Trace 3 # AT-TLS environment definition # # This file defines the AT-TLS environment for the Cloud Tape Connector. # # Key directives: # # Defines the client-side certificate store. # # The format is KeyRing,RingName,RingOwner # # e.g., KeyRing,MYKEYRING,CERTSERV # # # # Defines the client-side certificate label to use. # # If not specified, the system default is used. # # e.g., MyClientCert # # # # Defines the server-side certificate store. # # The format is KeyRing,RingName,RingOwner # # e.g., KeyRing,MYKEYRING,CERTSERV # # # # Defines the server-side certificate label to use. # # If not specified, the system default is used. # # e.g., MyServerCert # # # # Defines the SSL/TLS version to use. # # Supported values are TLSV1.2, TLSV1.3. # # e.g., TLSV1.2 # # # # Defines the cipher suites to use. # # The format is a comma-separated list of cipher suite names. # # e.g., ECDHE_ECDSA_AES_128_GCM_SHA256,ECDHE_RSA_AES_128_GCM_SHA256 # # # # Defines the security level for the connection. # # Supported values are: LOW, MEDIUM, HIGH. # # e.g., HIGH # # # # Defines whether to perform client certificate authentication. # # Supported values are: ON, OFF. # # e.g., ON # # # # Defines the truststore for server certificate validation. # # The format is KeyRing,RingName,RingOwner # # e.g., KeyRing,MYKEYRING,CERTSERV # # # # Defines the certificate label for the CA certificate. # # If not specified, the system default is used. # # e.g., MyCACert # # # # Defines the cipher suite for the handshake. # # e.g., TLS_RSA_WITH_AES_128_CBC_SHA256 # # # # Defines the certificate type for the client certificate. # # Supported values are: PERSONAL, SITE. # # e.g., PERSONAL # # # # Defines the certificate type for the server certificate. # # Supported values are: PERSONAL, SITE. # # e.g., SITE # # # # Defines the certificate label for the client certificate. # # e.g., MyClientCert # # # # Defines the certificate label for the server certificate. # # e.g., MyServerCert # # # # Defines the certificate label for the CA certificate. # # e.g., MyCACert # # # # Defines the Certificate Revocation List (CRL) path. # # e.g., /path/to/crl.pem # # # # Defines the Certificate Revocation List (CRL) user ID. # # e.g., CRLUSER # # # # Defines the Certificate Revocation List (CRL) password. # # e.g., CRLPASSWORD # # # # Defines the Certificate Revocation List (CRL) file name. # # e.g., crl.pem # # # # Defines the Certificate Revocation List (CRL) directory. # # e.g., /path/to/crl/directory # # # # Defines the Certificate Revocation List (CRL) owner. # # e.g., CRLOWNER # # # # Defines the Certificate Revocation List (CRL) group. # # e.g., CRLGROUP # # # # Defines the Certificate Revocation List (CRL) permissions. # # e.g., 644 # # # # Defines the Certificate Revocation List (CRL) access time. # # e.g., 2023-10-27 10:00:00 # # # # Defines the Certificate Revocation List (CRL) modification time. # # e.g., 2023-10-27 10:00:00 # # # # Defines the Certificate Revocation List (CRL) access permissions. # # e.g., rw-r--r-- # # # # Defines the Certificate Revocation List (CRL) owner name. # # e.g., CRLOWNERNAME # # # # Defines the Certificate Revocation List (CRL) group name. # # e.g., CRLGROUPNAME # # # # Defines the Certificate Revocation List (CRL) security context. # # e.g., UNRESTRICTED # # # # Defines the Certificate Revocation List (CRL) audit log. # # e.g., /var/log/crl.log # # # # Defines the Certificate Revocation List (CRL) audit log size. # # e.g., 10240 # # # # Defines the Certificate Revocation List (CRL) audit log rotation. # # e.g., DAILY # # # # Defines the Certificate Revocation List (CRL) audit log retention. # # e.g., 7 # # # # Defines the Certificate Revocation List (CRL) audit log level. # # e.g., ALL # # # # Defines the Certificate Revocation List (CRL) audit log format. # # e.g., JSON # # # # Defines the Certificate Revocation List (CRL) audit log destination. # # e.g., SYSLOG # # # # Defines the Certificate Revocation List (CRL) audit log facility. # # e.g., LOCAL7 # # # # Defines the Certificate Revocation List (CRL) audit log tag. # # e.g., CTCS # # # # Defines the Certificate Revocation List (CRL) audit log severity. # # e.g., INFO # # # # Defines the Certificate Revocation List (CRL) audit log enable. # # e.g., ON # # # # Defines the Certificate Revocation List (CRL) audit log disable. # # e.g., OFF # # # # Defines the Certificate Revocation List (CRL) audit log clear. # # e.g., TRUE # # # # Defines the Certificate Revocation List (CRL) audit log flush. # # e.g., TRUE # # # # Defines the Certificate Revocation List (CRL) audit log message. # # e.g., CRL processing complete. # # # # Defines the Certificate Revocation List (CRL) audit log count. # # e.g., 100 # # # # Defines the Certificate Revocation List (CRL) audit log size limit. # # e.g., 1000000 # # # # Defines the Certificate Revocation List (CRL) audit log time limit. # # e.g., 24h # # # # Defines the Certificate Revocation List (CRL) audit log time interval. # # e.g., 60m # # # # Defines the Certificate Revocation List (CRL) audit log time format. # # e.g., %Y-%m-%d %H:%M:%S # # # # Defines the Certificate Revocation List (CRL) audit log time zone. # # e.g., UTC # # # # Defines the Certificate Revocation List (CRL) audit log time zone offset. # # e.g., +0000 # # # # Defines the Certificate Revocation List (CRL) audit log time zone name. # # e.g., GMT # # # # Defines the Certificate Revocation List (CRL) audit log time zone abbreviation. # # e.g., UTC # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving. # # e.g., TRUE # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving offset. # # e.g., +0100 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving name. # # e.g., BST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving abbreviation. # # e.g., BST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule. # # e.g., EU # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., European Summer Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., EST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0100 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Central European Summer Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., CEST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0200 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Eastern European Summer Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., EEST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0300 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Moscow Summer Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., MSK # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0400 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Arabian Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., AST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0500 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Pakistan Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., PKT # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0600 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Bangladesh Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., BST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0700 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Indochina Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., ICT # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0800 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., China Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., CST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0900 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Japan Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., JST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +1000 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Australia Eastern Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., AEST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +1100 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Central Pacific Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., CPST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +1200 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Samoa Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., SST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., -1100 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Hawaii Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., HST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., -1000 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Alaska Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., AKST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., -0900 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Pacific Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., PST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., -0800 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Mountain Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., MST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., -0700 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Central Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., CST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., -0600 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Eastern Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., EST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., -0500 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Brazil Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., BRST # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., -0300 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Argentina Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., ART # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., -0300 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Greenwich Mean Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., GMT # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0000 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Western European Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., WET # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0100 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Central European Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., CET # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0100 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Eastern European Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., EET # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023-03-26 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule end. # # e.g., 2023-10-29 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule offset. # # e.g., +0200 # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule name. # # e.g., Moscow Standard Time # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule abbreviation. # # e.g., MSK # # # # Defines the Certificate Revocation List (CRL) audit log time zone daylight saving rule start. # # e.g., 2023- ```