<?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 Request Sub-CA-Certificate for Ironport WSA in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/request-sub-ca-certificate-for-ironport-wsa/m-p/1749306#M921520</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found the answer to my question on Microsoft's site. Windows 2003 doesn't support text based OID comments. It needs to be base64 (or use Windows 2008 or 2008 R2).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Nov 2011 20:02:51 GMT</pubDate>
    <dc:creator>Jeffrey Ness</dc:creator>
    <dc:date>2011-11-22T20:02:51Z</dc:date>
    <item>
      <title>Request Sub-CA-Certificate for Ironport WSA</title>
      <link>https://community.cisco.com/t5/network-security/request-sub-ca-certificate-for-ironport-wsa/m-p/1749303#M921517</link>
      <description>&lt;P&gt;How do I request a Sub-CA-Certificate for an Ironport WSA ? The GUI only offers the import of the public and private certificates to running the Ironport Proxy Appliance as a subordinate CA. The Root-CA is a Standalone CA from Microsoft.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 12:25:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/request-sub-ca-certificate-for-ironport-wsa/m-p/1749303#M921517</guid>
      <dc:creator>swiss_ewok</dc:creator>
      <dc:date>2020-02-21T12:25:11Z</dc:date>
    </item>
    <item>
      <title>Request Sub-CA-Certificate for Ironport WSA</title>
      <link>https://community.cisco.com/t5/network-security/request-sub-ca-certificate-for-ironport-wsa/m-p/1749304#M921518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the solution for this question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The steps to use the sample inf file are:&lt;/P&gt;&lt;OL start="1"&gt;&lt;LI&gt;run the command: certreq.exe -new certreq.inf cacert.req&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;submit the cacert.req to your Root CA and issue the certificate and export the certificate to a file "newcacer.cer"&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;install the certificate by running the command: certreq.exe -accept newcacer.cer&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;export the certificate to a PFX file including the private key&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;using openssl convert the PFX file to PEM format with the following steps:&lt;BR /&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * extract the certificate file (the signed public key) from the pfx file:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; openssl pkcs12 -in PFXFilename.pfx -out SubCA_PubCert.pem -nodes -nokeys -clcerts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * extract private key from a pfx file and write it to PEM file:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; openssl pkcs12 -in PFXFilename.pfx -out SubCA_PrivKey_encrypted.pem -nocerts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * remove the password from the private key file:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; openssl rsa -in SubCA_PrivKey_encrypted.pem -out SubCA_PrivKey_unencrypted.pem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's all. Then you can import the Sub-CA-Cert and the private key into the Ironport WSA. All the copied certificates issued by the Sub-CA of the Ironport Web Security Appliance will now trusted by the client (if the Root-CA is trusted on the client).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample for the INF-File:&lt;/P&gt;&lt;P&gt;*******************************&lt;/P&gt;&lt;P&gt;[Version]&lt;/P&gt;&lt;P&gt;Signature="$Windows NT$"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Strings]&lt;BR /&gt;CACN = "Issuing CA"&lt;BR /&gt;&lt;BR /&gt;[NewRequest]&lt;BR /&gt;Subject = "CN=%CACN%"&lt;BR /&gt;Exportable = True&lt;BR /&gt;MachineKeySet = True&lt;BR /&gt;KeyLength = 2048&lt;BR /&gt;KeyUsage = "CERT_KEY_CERT_SIGN_KEY_USAGE | CERT_DIGITAL_SIGNATURE_KEY_USAGE | CERT_CRL_SIGN_KEY_USAGE"&lt;BR /&gt;KeyUsageProperty = "NCRYPT_ALLOW_SIGNING_FLAG"&lt;BR /&gt;KeyContainer = "%CACN%"&lt;BR /&gt;&lt;BR /&gt;[Extensions]&lt;BR /&gt;2.5.29.19 = "{text}ca=1&amp;amp;pathlength=0"&lt;BR /&gt;Critical = 2.5.29.19&lt;BR /&gt;*******************************&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 10:25:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/request-sub-ca-certificate-for-ironport-wsa/m-p/1749304#M921518</guid>
      <dc:creator>swiss_ewok</dc:creator>
      <dc:date>2011-08-08T10:25:21Z</dc:date>
    </item>
    <item>
      <title>Request Sub-CA-Certificate for Ironport WSA</title>
      <link>https://community.cisco.com/t5/network-security/request-sub-ca-certificate-for-ironport-wsa/m-p/1749305#M921519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for posting this. I am trying to follow your instructions, but when I run step 1 using the INF provided I get the error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Certificate Request Processor: The data is invalid. 0x8007000d (WIN32: 13)&lt;/P&gt;&lt;P&gt;certreq.inf&lt;/P&gt;&lt;P&gt;[Extensions] 2.5.29.19 = {text}ca=1&amp;amp;pathlength=0&lt;SPAN id="mce_marker"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Certificate Request Processor: The data is invalid. 0x8007000d (WIN32: 13)&lt;/P&gt;&lt;P&gt;certreq.inf&lt;/P&gt;&lt;P&gt;[Extensions] 2.5.29.19 = {text}ca=1&amp;amp;pathlength=0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 19:28:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/request-sub-ca-certificate-for-ironport-wsa/m-p/1749305#M921519</guid>
      <dc:creator>Jeffrey Ness</dc:creator>
      <dc:date>2011-11-22T19:28:14Z</dc:date>
    </item>
    <item>
      <title>Request Sub-CA-Certificate for Ironport WSA</title>
      <link>https://community.cisco.com/t5/network-security/request-sub-ca-certificate-for-ironport-wsa/m-p/1749306#M921520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found the answer to my question on Microsoft's site. Windows 2003 doesn't support text based OID comments. It needs to be base64 (or use Windows 2008 or 2008 R2).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 20:02:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/request-sub-ca-certificate-for-ironport-wsa/m-p/1749306#M921520</guid>
      <dc:creator>Jeffrey Ness</dc:creator>
      <dc:date>2011-11-22T20:02:51Z</dc:date>
    </item>
    <item>
      <title>Thanks a ton for this post! I</title>
      <link>https://community.cisco.com/t5/network-security/request-sub-ca-certificate-for-ironport-wsa/m-p/1749307#M921521</link>
      <description>&lt;P&gt;Thanks a ton for this post!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to add that since certreq is way different than openssl cfg file format, I'd post what I used to get more than the CN to show up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Subject = "CN=wsa.company.com,OU=IT,O=My FQDN of Company,L=My City,S=Virginia,C=US"&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 19:16:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/request-sub-ca-certificate-for-ironport-wsa/m-p/1749307#M921521</guid>
      <dc:creator>Jeff Ferrell</dc:creator>
      <dc:date>2014-07-10T19:16:41Z</dc:date>
    </item>
  </channel>
</rss>

