diff options
author | TamasBakai <tamas.bakai@est.tech> | 2019-06-27 13:32:41 +0200 |
---|---|---|
committer | TamasBakai <tamas.bakai@est.tech> | 2019-07-02 09:08:22 +0200 |
commit | b8fff00b8fde6e95a2eaf9efe6a118d49dc35ebd (patch) | |
tree | c8429d622fe1110f1a04032bab25b3b77a9141fe /docs/sections/services/dfc | |
parent | 4ad6838f87ee93880f42e78238056fb5be97152b (diff) |
DfC certificate handling clarifications
Issue-ID: DCAEGEN2-1603
Change-Id: I5199e867ae27e2565b5cae99a5b75924d9b489a1
Signed-off-by: TamasBakai <tamas.bakai@est.tech>
Diffstat (limited to 'docs/sections/services/dfc')
-rw-r--r-- | docs/sections/services/dfc/certificates.rst | 40 |
1 files changed, 36 insertions, 4 deletions
diff --git a/docs/sections/services/dfc/certificates.rst b/docs/sections/services/dfc/certificates.rst index 17bfb2f3..05728235 100644 --- a/docs/sections/services/dfc/certificates.rst +++ b/docs/sections/services/dfc/certificates.rst @@ -71,9 +71,40 @@ We have two keystore files, one for TrustManager, one for KeyManager. keytool -importkeystore -deststorepass [changeit] -destkeypass [changeit] -destkeystore dfc.jks -srckeystore dfc.p12 -srcstoretype PKCS12 -srcstorepass [some-password] -alias [some-alias] -3. Finished +4. Update existing jks.b64 files +--------------------------------- -4. Configure vsftpd: +Copy the existing jks from the DFC container to a local environment. + + .. code:: bash + + docker cp <DFC container>:/opt/app/datafile/config/ftp.jks . + docker cp <DFC container>:/opt/app/datafile/config/dfc.jks . + + .. code:: bash + + openssl base64 -in ftp.jks -out ftp.jks.b64 + openssl base64 -in dfc.jks -out dfc.jks.b64 + + .. code:: bash + + chmod 755 ftp.jks.b64 + chmod 755 dfc.jks.b64 + +Copy the new jks.64 files from local environment to the DFC container. + + .. code:: bash + + docker cp ftp.jks.b64 <DFC container>:/opt/app/datafile/config/ + docker cp dfc.jks.b64 <DFC container>:/opt/app/datafile/config/ + +Finally + + .. code:: bash + + docker restart <DFC container> + +5. Configure vsftpd: -------------------- update /etc/vsftpd/vsftpd.conf: @@ -97,7 +128,7 @@ We have two keystore files, one for TrustManager, one for KeyManager. ssl_request_cert=YES ca_certs_file=/home/vsftpd/myuser/dfc.crt -5. Configure config/datafile_endpoints.json: +6. Configure config/datafile_endpoints.json: -------------------------------------------- Update the file accordingly: @@ -110,6 +141,7 @@ We have two keystore files, one for TrustManager, one for KeyManager. "trustedCAPassword": "[yourpassword]" } -6. This has been tested with vsftpd and dfc, with self-signed certificates. +7. Other conditions --------------------------------------------------------------------------- + This has been tested with vsftpd and dfc, with self-signed certificates. In real deployment, we should use ONAP-CA signed certificate for DFC, and vendor-CA signed certificate for xNF |