<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ONTAP and Windows CA signed certificate - HOW-TO in ONTAP Discussions</title>
    <link>https://community.netapp.com/t5/ONTAP-Discussions/ONTAP-and-Windows-CA-signed-certificate-HOW-TO/m-p/144026#M31890</link>
    <description>&lt;P&gt;Creating a CSR and submitting it to the CA for a certificate is the easy part.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My question is as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The&amp;nbsp;Microsoft CA (internal) has multiple templates available, the templates serve various purposes such as client authentication, server authentication, code signing etc. (key usage, application policies). Which template should be used when submitting the certificate request to the CA? Also do we need multiple certificaes for a two-node cluster?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any documentation about the requirements for SSL certs?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your help in answering the question.&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jun 2025 13:12:34 GMT</pubDate>
    <dc:creator>52DevOps</dc:creator>
    <dc:date>2025-06-04T13:12:34Z</dc:date>
    <item>
      <title>ONTAP and Windows CA signed certificate - HOW-TO</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/ONTAP-and-Windows-CA-signed-certificate-HOW-TO/m-p/144026#M31890</link>
      <description>&lt;P&gt;Creating a CSR and submitting it to the CA for a certificate is the easy part.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My question is as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The&amp;nbsp;Microsoft CA (internal) has multiple templates available, the templates serve various purposes such as client authentication, server authentication, code signing etc. (key usage, application policies). Which template should be used when submitting the certificate request to the CA? Also do we need multiple certificaes for a two-node cluster?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any documentation about the requirements for SSL certs?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your help in answering the question.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 13:12:34 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/ONTAP-and-Windows-CA-signed-certificate-HOW-TO/m-p/144026#M31890</guid>
      <dc:creator>52DevOps</dc:creator>
      <dc:date>2025-06-04T13:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: ONTAP and Windows CA signed certificate - HOW-TO</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/ONTAP-and-Windows-CA-signed-certificate-HOW-TO/m-p/144044#M31895</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i'll share a bit from my internal DOC... haven't tested it recently, and i think it can be a bit more optimised from the current steps, use on your own risk:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"Server&amp;nbsp;Authentication Certificate" is the right Microsoft CA Template. Create it with exportable key, SHA1, 2048 bit or larger key size.&lt;/P&gt;
&lt;P&gt;After it saved by the MS enrolment process. Export the cert witht the key from the personal store MMC, convert using openSSL for windows package or on&amp;nbsp;Linux device with the following commands (Do NOT use public websites) :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;openssl pkcs12 -in filename.pfx -nocerts -out Temp_Private_File.pem &lt;/PRE&gt;
&lt;PRE&gt;openssl pkcs12 -in filename.pfx -clcerts -nokeys -out Public_Key_Cert.pem&lt;/PRE&gt;
&lt;PRE&gt;openssl rsa -in Temp_Private_File.pem -out Private_Key_Cert.key&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Export the chain as base 64, and open in notepad.&lt;/P&gt;
&lt;P&gt;Set for the certs in cluster using the following command and follow the wizard, paste each&amp;nbsp;certificate when prompted :&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;security certificate install -type server&lt;/PRE&gt;
&lt;P&gt;Show the Certs&lt;/P&gt;
&lt;PRE&gt;security certificate show&lt;/PRE&gt;
&lt;P&gt;Set the cert on the SVM or the Cluster SVM&lt;/P&gt;
&lt;PRE&gt;ssl modify -vserver &amp;lt;vserver&amp;gt; -ca L&amp;lt;taken from above&amp;gt; -serial &amp;lt;taken from above&amp;gt;&lt;/PRE&gt;
&lt;P&gt;To delete a certificate. First make sure&amp;nbsp;it's not in use in “ssl show”, find the certificate s/n in “security certificate show”, now use the s/n to delete using the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;security certificate delete -serial &amp;lt;cert serial&amp;gt; *&lt;/PRE&gt;
&lt;P&gt;Good luck&lt;/P&gt;
&lt;P&gt;Let me know if it worked please.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2018 23:05:34 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/ONTAP-and-Windows-CA-signed-certificate-HOW-TO/m-p/144044#M31895</guid>
      <dc:creator>GidonMarcus</dc:creator>
      <dc:date>2018-10-17T23:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: ONTAP and Windows CA signed certificate - HOW-TO</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/ONTAP-and-Windows-CA-signed-certificate-HOW-TO/m-p/144093#M31910</link>
      <description>&lt;P&gt;Thanks Gidon&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Those steps did help in answering a nagging question about the template.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I did not use openssl for the conversion. Using certreq I was able to request the certificate in base64 and load it onto our filer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also used certutil -dump command to analyze the self-signed certificate which is compliant with ISIS-MTT version 1.1 and thus it kept showing "&lt;STRONG class="uiterm x-hidden-focus"&gt;Certificate Signing, Off-line CRL Signing, CRL Signing&lt;/STRONG&gt;" under key usage.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Oct 2018 17:05:13 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/ONTAP-and-Windows-CA-signed-certificate-HOW-TO/m-p/144093#M31910</guid>
      <dc:creator>52DevOps</dc:creator>
      <dc:date>2018-10-19T17:05:13Z</dc:date>
    </item>
  </channel>
</rss>

