Generate a local 3 certificate chain in ACF2
book
Article ID: 267183
calendar_today
Updated On:
Products
ACF2 - z/OS
ACF2
ACF2 - MISC
Issue/Introduction
This article documents how to locally generate 3 certificates in a chain using ACF2. The chain will include:
- Root
- Intermediate Root
- Personal/client certificate
Resolution
Steps to generate 3 certificates in a chain:
- Generate a local Root/Certificate Authority:
GENCERT CERTAUTH.SIGNER SUBJSDN(.....) LABEL(MY COMPANY CA) EXPIRE(12/31/30)
- Generate the Intermediate Root and sign it with the local Root:
GENCERT FTPD.INTER SUBJSDN(.....) LABEL(MY INTERMEDIATE COMPANY CA) SIGNWITH(CERTAUTH.SIGNER)
- Generate the client certificate and sign it with the Intermediate Root:
GENCERT FTPD.CERT1 SUBJSDN(.....) LABEL(FTPD Certificate) SIGNWITH(CERTAUTH.INTER)
Feedback
thumb_up
Yes
thumb_down
No