We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ACC 1.12
According to AS3 schema, inside "TLS_Client" class, field "clientCertificate" should be string, but 1.12 ACC produces a list of strings.
Take a look at field "clientCertificate" under this link: https://clouddocs.f5.com/products/extensions/f5-appsvcs-extension/latest/refguide/schema-reference.html?highlight=tls_client#tls-client
Try to convert the following config: bigip.conf.txt
... "custom_ssl_server_profile": { "clientCertificate": [ "custom_ssl_cert_key" ], "ciphers": "DEFAULT", "class": "TLS_Client" }, ...
... "custom_ssl_server_profile": { "clientCertificate": "custom_ssl_cert_key", "ciphers": "DEFAULT", "class": "TLS_Client" }, ...
The text was updated successfully, but these errors were encountered:
Output
"custom_ssl_server_profile": { "alertTimeout": "indefinite", "cacheTimeout": 3600, "clientCertificate": [ -------------- Not a valid string "custom_ssl_cert_key" ], "ciphers": "DEFAULT", "renegotiationEnabled": true, "sendSNI": "none", "sessionTickets": false, "forwardProxyEnabled": false, "forwardProxyBypassEnabled": false, "class": "TLS_Client", "tls1_0Enabled": true, "tls1_1Enabled": true, "tls1_2Enabled": true, "tls1_3Enabled": false, "singleUseDhEnabled": false, "insertEmptyFragmentsEnabled": false },
Line 24 https://github.com/mdditt2000/f5-appsvcs-acc/blob/master/Github/38/as3-convert.json
Creating Jira
Sorry, something went wrong.
Created CHARON-400 for PM tracking.
Found bug in found a bug in loadCertsAndKeys. Issue resolved
No branches or pull requests
Environment
ACC 1.12
Summary
According to AS3 schema, inside "TLS_Client" class, field "clientCertificate" should be string, but 1.12 ACC produces a list of strings.
Take a look at field "clientCertificate" under this link:
https://clouddocs.f5.com/products/extensions/f5-appsvcs-extension/latest/refguide/schema-reference.html?highlight=tls_client#tls-client
Steps To Reproduce
Try to convert the following config:
bigip.conf.txt
Actual Behavior
Expected Behavior
The text was updated successfully, but these errors were encountered: