<?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 Quote:Rodolfo S. wrote: in Intel® Software Guard Extensions (Intel® SGX)</title>
    <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091651#M811</link>
    <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Rodolfo S. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi Surenthar,&lt;/P&gt;

&lt;P&gt;Thanks for the reply. So, a valid GID would be one present in the QUOTE?&lt;/P&gt;

&lt;P&gt;The description of the QUOTE structure says that the GID is 4-bytes long, so it could possibly contain 10 digits instead of 7.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Rodolfo&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;UPDATE: I was able to retrieve the GID from the&amp;nbsp;sgx_ra_get_msg1() command result, which is a sgx_ra_msg1_t, so I can use that GID to get the SigRL from IAS.&lt;/P&gt;

&lt;P&gt;Note: I had to revert the byte order to match the endianness expected by the IAS (e.g: 0x1 0x2 0x3 0x4 would become 0x4 0x3 0x2 0x1).&lt;/P&gt;</description>
    <pubDate>Thu, 11 Aug 2016 22:22:00 GMT</pubDate>
    <dc:creator>Rodolfo_S_</dc:creator>
    <dc:date>2016-08-11T22:22:00Z</dc:date>
    <item>
      <title>IAS request error</title>
      <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091648#M808</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I'm trying to use the IAS following the example 3.1.2.1 provided at&amp;nbsp;&lt;A href="https://community.intel.com/legacyfs/online/drupal_files/managed/3d/c8/IAS_1_0_API_spec_1_1_Final.pdf"&gt;https://software.intel.com/sites/default/files/managed/3d/c8/IAS_1_0_API_spec_1_1_Final.pdf&lt;/A&gt;, but so far at no success.&lt;/P&gt;

&lt;P&gt;When I submit an HTTP request exactly as the one provided in the example (with gid=00000010), I get as response "404 Not Found". The same result is obtained if I try gid=00000000 (I tried this other gid since in the remote attestation end-to-end sample code, it is stated that IAS only accepts gid equal to zero).&lt;/P&gt;

&lt;P&gt;When I try the request with a gid shorter than 8 digits (e.g. gid=0) the response is a different error "405 Method Not Allowed".&lt;/P&gt;

&lt;P&gt;Any tips in what am I doing wrong?&lt;/P&gt;

&lt;P&gt;Below you can find the requests and reponses illustrating what I just wrote.&lt;/P&gt;

&lt;P&gt;Best regards,&lt;/P&gt;

&lt;P&gt;Rodolfo&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;rodolfoams@badejo:~$ curl -1 --tlsv1.2 -v -E clientconc.pem &lt;A href="https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sigrl/00000000" target="_blank"&gt;https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sigrl/00000000&lt;/A&gt;
* Hostname was NOT found in DNS cache
*   Trying 208.39.114.225...
* Connected to test-as.sgx.trustedservices.intel.com (208.39.114.225) port 443 (#0)
* successfully set certificate verify locations:
*   CAfile: none
  CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
* SSLv3, TLS handshake, Server hello (2):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS handshake, Server key exchange (12):
* SSLv3, TLS handshake, Request CERT (13):
* SSLv3, TLS handshake, Server finished (14):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS handshake, Client key exchange (16):
* SSLv3, TLS handshake, CERT verify (15):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSL connection using ECDHE-RSA-AES128-GCM-SHA256
* Server certificate:
*      subject: C=US; ST=CA; L=Santa Clara; O=Intel Corporation; CN=test-as.sgx.trustedservices.intel.com
*      start date: 2015-05-20 06:42:44 GMT
*      expire date: 2016-11-10 06:42:44 GMT
*      subjectAltName: test-as.sgx.trustedservices.intel.com matched
*      issuer: C=US; ST=CA; L=Santa Clara; O=Intel Corporation; CN=Intel External Basic Issuing CA 3B
*      SSL certificate verify ok.
&amp;gt; GET /attestation/sgx/v1/sigrl/00000000 HTTP/1.1
&amp;gt; User-Agent: curl/7.35.0
&amp;gt; Host: test-as.sgx.trustedservices.intel.com
&amp;gt; Accept: */*
&amp;gt; 
&amp;lt; HTTP/1.1 404 Not Found
&amp;lt; request-id: 84058baa149f48afbaa529da2f6ba62a
&amp;lt; date: Tue, 09 Aug 2016 20:56:19 GMT
&amp;lt; transfer-encoding: chunked
&amp;lt; Connection: keep-alive
&amp;lt; 
* Connection #0 to host test-as.sgx.trustedservices.intel.com left intact&lt;/PRE&gt;

&lt;PRE class="brush:bash;"&gt;rodolfoams@badejo:~$ curl -1 --tlsv1.2 -v -E clientconc.pem &lt;A href="https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sigrl/00000000" target="_blank"&gt;https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sigrl/00000000&lt;/A&gt;
* Hostname was NOT found in DNS cache
*   Trying 208.39.114.225...
* Connected to test-as.sgx.trustedservices.intel.com (208.39.114.225) port 443 (#0)
* successfully set certificate verify locations:
*   CAfile: none
  CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
* SSLv3, TLS handshake, Server hello (2):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS handshake, Server key exchange (12):
* SSLv3, TLS handshake, Request CERT (13):
* SSLv3, TLS handshake, Server finished (14):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS handshake, Client key exchange (16):
* SSLv3, TLS handshake, CERT verify (15):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSL connection using ECDHE-RSA-AES128-GCM-SHA256
* Server certificate:
* 	 subject: C=US; ST=CA; L=Santa Clara; O=Intel Corporation; CN=test-as.sgx.trustedservices.intel.com
* 	 start date: 2015-05-20 06:42:44 GMT
* 	 expire date: 2016-11-10 06:42:44 GMT
* 	 subjectAltName: test-as.sgx.trustedservices.intel.com matched
* 	 issuer: C=US; ST=CA; L=Santa Clara; O=Intel Corporation; CN=Intel External Basic Issuing CA 3B
* 	 SSL certificate verify ok.
&amp;gt; GET /attestation/sgx/v1/sigrl/00000000 HTTP/1.1
&amp;gt; User-Agent: curl/7.35.0
&amp;gt; Host: test-as.sgx.trustedservices.intel.com
&amp;gt; Accept: */*
&amp;gt; 
&amp;lt; HTTP/1.1 404 Not Found
&amp;lt; request-id: be2f19cd7f7543f2abdddcec778d8677
&amp;lt; date: Tue, 09 Aug 2016 20:58:10 GMT
&amp;lt; transfer-encoding: chunked
&amp;lt; Connection: keep-alive
&amp;lt; 
* Connection #0 to host test-as.sgx.trustedservices.intel.com left intact&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2016 21:02:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091648#M808</guid>
      <dc:creator>Rodolfo_S_</dc:creator>
      <dc:date>2016-08-09T21:02:52Z</dc:date>
    </item>
    <item>
      <title>Hi Rodolfo,</title>
      <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091649#M809</link>
      <description>&lt;P&gt;Hi Rodolfo,&lt;/P&gt;

&lt;P&gt;A point to be noted here is that, platform GID is to be sent as part of the GET request to IAS not the Extended GID ( which is 0 for now). The length of the GID is 8 digits and the sample GID which is 00000010 might not be a valid EPID group, hence you see 404 Not Found Error. Try using a valid GID to obtain 200 OK response from IAS.&lt;/P&gt;

&lt;P&gt;Thanks and Regards,&lt;BR /&gt;
	Surenthar Selvaraj&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2016 06:51:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091649#M809</guid>
      <dc:creator>Surenthar_S_Intel</dc:creator>
      <dc:date>2016-08-11T06:51:46Z</dc:date>
    </item>
    <item>
      <title>Hi Surenthar,</title>
      <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091650#M810</link>
      <description>&lt;P&gt;Hi Surenthar,&lt;/P&gt;

&lt;P&gt;Thanks for the reply. So, a valid GID would be one present in the QUOTE?&lt;/P&gt;

&lt;P&gt;The description of the QUOTE structure says that the GID is 4-bytes long, so it could possibly contain 10 digits instead of 7.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Rodolfo&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2016 11:12:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091650#M810</guid>
      <dc:creator>Rodolfo_S_</dc:creator>
      <dc:date>2016-08-11T11:12:26Z</dc:date>
    </item>
    <item>
      <title>Quote:Rodolfo S. wrote:</title>
      <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091651#M811</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Rodolfo S. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi Surenthar,&lt;/P&gt;

&lt;P&gt;Thanks for the reply. So, a valid GID would be one present in the QUOTE?&lt;/P&gt;

&lt;P&gt;The description of the QUOTE structure says that the GID is 4-bytes long, so it could possibly contain 10 digits instead of 7.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Rodolfo&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;UPDATE: I was able to retrieve the GID from the&amp;nbsp;sgx_ra_get_msg1() command result, which is a sgx_ra_msg1_t, so I can use that GID to get the SigRL from IAS.&lt;/P&gt;

&lt;P&gt;Note: I had to revert the byte order to match the endianness expected by the IAS (e.g: 0x1 0x2 0x3 0x4 would become 0x4 0x3 0x2 0x1).&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2016 22:22:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091651#M811</guid>
      <dc:creator>Rodolfo_S_</dc:creator>
      <dc:date>2016-08-11T22:22:00Z</dc:date>
    </item>
    <item>
      <title>Quote:Rodolfo S. wrote:</title>
      <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091652#M812</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Rodolfo S. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi Surenthar,&lt;/P&gt;

&lt;P&gt;Thanks for the reply. So, a valid GID would be one present in the QUOTE?&lt;/P&gt;

&lt;P&gt;The description of the QUOTE structure says that the GID is 4-bytes long, so it could possibly contain 10 digits instead of 7.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Rodolfo&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P style="line-height:15.0pt"&gt;&lt;SPAN style="font-size:10.5pt;font-family:&amp;quot;Helvetica&amp;quot;,sans-serif;
color:#666666"&gt;Yes, the quote structure contains valid GID (4 bytes) along with many other parameters and also in remote attestation process, before sending GET request for SigRL to IAS, the server receives the GID from the client application as part of Msg1.&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="line-height:15.0pt"&gt;&lt;SPAN style="font-size:10.5pt;font-family:&amp;quot;Helvetica&amp;quot;,sans-serif;
color:#666666"&gt;The GID should be represented in Little Endian format and each byte is represented with 2 hex digits. Hence 4bytes * 2 = 8 digits&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2016 04:21:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091652#M812</guid>
      <dc:creator>Surenthar_S_Intel</dc:creator>
      <dc:date>2016-08-12T04:21:50Z</dc:date>
    </item>
    <item>
      <title>Hi Surenthar,</title>
      <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091653#M813</link>
      <description>&lt;P&gt;Hi Surenthar,&lt;/P&gt;

&lt;P&gt;do you know if there is anything wrong with the IAS test server? I'm getting 404 NOT FOUND error when making a GET request with a valid GID (this is the same GID that I successfully used before), and a 400 BAD REQUEST when making a POST request with a valid QUOTE (this is the same QUOTE that I successfully used before).&lt;/P&gt;

&lt;P&gt;Just to make sure, the GID that I get from Msg1 (when running in HW mode) is 0x4c060000 (Little-Endian), so the request I should make to retrieve the SigRL is: GET&amp;nbsp;https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sigrl/0000064c&lt;/P&gt;

&lt;P&gt;Am I correct?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Rodolfo Silva&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2016 18:58:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091653#M813</guid>
      <dc:creator>Rodolfo_S_</dc:creator>
      <dc:date>2016-10-10T18:58:26Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091654#M814</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Which version of SDK are using for this attestation process. Because&amp;nbsp;&lt;SPAN style="font-size: 12px;"&gt;&amp;nbsp;Intel® SGX Development Services will no longer support remote attestation quotes generated from Intel® Software Guard Extensions SDK v1.1 and associated Platform Software.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;The Intel® Software Guard Extensions SDK v1.6&amp;nbsp;and associated Platform Software continues to support Intel® SGX Development Services since its release on July 07, 2016.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;-Surenthar&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 09:29:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091654#M814</guid>
      <dc:creator>Surenthar_S_Intel</dc:creator>
      <dc:date>2016-10-12T09:29:38Z</dc:date>
    </item>
    <item>
      <title>Hi Surenthar,</title>
      <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091655#M815</link>
      <description>&lt;P&gt;Hi Surenthar,&lt;/P&gt;

&lt;P&gt;As you correctly pointed out, I was using an unsupported version of the SDK and PSW (1.1). After Updating it to the current release, I was able to successfully use the IAS test server again.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Rodolfo&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2016 01:38:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091655#M815</guid>
      <dc:creator>Rodolfo_S_</dc:creator>
      <dc:date>2016-10-13T01:38:06Z</dc:date>
    </item>
    <item>
      <title>Hi</title>
      <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091656#M816</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;I have tested the command for connecting to IAS a few month ago. and it works well for me:&lt;/P&gt;

&lt;P&gt;curl -1 --tlsv1.2 -v -E bob_pfx.pem &amp;nbsp;https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sigrl/00000BCD&lt;/P&gt;

&lt;P&gt;Today, I test it again, it shows the error:&lt;/P&gt;

&lt;P&gt;* Hostname was NOT found in DNS cache&lt;BR /&gt;
	* &amp;nbsp; Trying 208.39.114.225...&lt;BR /&gt;
	* Connected to test-as.sgx.trustedservices.intel.com (208.39.114.225) port 443 (#0)&lt;BR /&gt;
	* successfully set certificate verify locations:&lt;BR /&gt;
	* &amp;nbsp; CAfile: none&lt;BR /&gt;
	&amp;nbsp; CApath: /etc/ssl/certs&lt;BR /&gt;
	* SSLv3, TLS handshake, Client hello (1):&lt;BR /&gt;
	* SSLv3, TLS handshake, Server hello (2):&lt;BR /&gt;
	* SSLv3, TLS handshake, CERT (11):&lt;BR /&gt;
	* SSLv3, TLS handshake, Server key exchange (12):&lt;BR /&gt;
	* SSLv3, TLS handshake, Request CERT (13):&lt;BR /&gt;
	* SSLv3, TLS handshake, Server finished (14):&lt;BR /&gt;
	* SSLv3, TLS handshake, CERT (11):&lt;BR /&gt;
	* SSLv3, TLS handshake, Client key exchange (16):&lt;BR /&gt;
	* SSLv3, TLS handshake, CERT verify (15):&lt;BR /&gt;
	* SSLv3, TLS change cipher, Client hello (1):&lt;BR /&gt;
	* SSLv3, TLS handshake, Finished (20):&lt;BR /&gt;
	* Unknown SSL protocol error in connection to test-as.sgx.trustedservices.intel.com:443&lt;BR /&gt;
	* Closing connection 0&lt;BR /&gt;
	curl: (35) Unknown SSL protocol error in connection to test-as.sgx.trustedservices.intel.com:443&lt;/P&gt;

&lt;P&gt;Anyone know how to handle it, Thanks a lot.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 00:22:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091656#M816</guid>
      <dc:creator>jiang__chao</dc:creator>
      <dc:date>2017-07-27T00:22:21Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091657#M817</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
	&lt;BR /&gt;
	I am having the same issue as Chao:&lt;BR /&gt;
	&lt;BR /&gt;
	* Unknown SSL protocol error in connection to test-as.sgx.trustedservices.intel.com:443&amp;nbsp;&lt;BR /&gt;
	* Closing connection 0&lt;/P&gt;

&lt;P&gt;Is there something going on with the IAS? &amp;nbsp;Thanks a lot!&lt;BR /&gt;
	&lt;BR /&gt;
	Kind Regards,&lt;BR /&gt;
	Elephant&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	&lt;/P&gt;&lt;BLOCKQUOTE&gt;chao j. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;I have tested the command for connecting to IAS a few month ago. and it works well for me:&lt;/P&gt;

&lt;P&gt;curl -1 --tlsv1.2 -v -E bob_pfx.pem &amp;nbsp;&lt;A href="https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sigrl/00000BCD"&gt;https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sig...&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Today, I test it again, it shows the error:&lt;/P&gt;

&lt;P&gt;* Hostname was NOT found in DNS cache&lt;BR /&gt;
	* &amp;nbsp; Trying 208.39.114.225...&lt;BR /&gt;
	* Connected to test-as.sgx.trustedservices.intel.com (208.39.114.225) port 443 (#0)&lt;BR /&gt;
	* successfully set certificate verify locations:&lt;BR /&gt;
	* &amp;nbsp; CAfile: none&lt;BR /&gt;
	&amp;nbsp; CApath: /etc/ssl/certs&lt;BR /&gt;
	* SSLv3, TLS handshake, Client hello (1):&lt;BR /&gt;
	* SSLv3, TLS handshake, Server hello (2):&lt;BR /&gt;
	* SSLv3, TLS handshake, CERT (11):&lt;BR /&gt;
	* SSLv3, TLS handshake, Server key exchange (12):&lt;BR /&gt;
	* SSLv3, TLS handshake, Request CERT (13):&lt;BR /&gt;
	* SSLv3, TLS handshake, Server finished (14):&lt;BR /&gt;
	* SSLv3, TLS handshake, CERT (11):&lt;BR /&gt;
	* SSLv3, TLS handshake, Client key exchange (16):&lt;BR /&gt;
	* SSLv3, TLS handshake, CERT verify (15):&lt;BR /&gt;
	* SSLv3, TLS change cipher, Client hello (1):&lt;BR /&gt;
	* SSLv3, TLS handshake, Finished (20):&lt;BR /&gt;
	* Unknown SSL protocol error in connection to test-as.sgx.trustedservices.intel.com:443&lt;BR /&gt;
	* Closing connection 0&lt;BR /&gt;
	curl: (35) Unknown SSL protocol error in connection to test-as.sgx.trustedservices.intel.com:443&lt;/P&gt;

&lt;P&gt;Anyone know how to handle it, Thanks a lot.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 01:55:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091657#M817</guid>
      <dc:creator>Elephant</dc:creator>
      <dc:date>2017-07-27T01:55:08Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091658#M818</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
	&lt;BR /&gt;
	The IAS is back accepting connections! &amp;nbsp;at about 4pm GMT +8 (SG) today. &amp;nbsp;What happened? &amp;nbsp;It went down for more than 12 hours!&amp;nbsp;&lt;BR /&gt;
	&lt;BR /&gt;
	Kind Regards,&lt;BR /&gt;
	Elephant&lt;BR /&gt;
	&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Elephant wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I am having the same issue as Chao:&lt;/P&gt;

&lt;P&gt;* Unknown SSL protocol error in connection to test-as.sgx.trustedservices.intel.com:443&amp;nbsp;&lt;BR /&gt;
	* Closing connection 0&lt;/P&gt;

&lt;P&gt;Is there something going on with the IAS? &amp;nbsp;Thanks a lot!&lt;/P&gt;

&lt;P&gt;Kind Regards,&lt;BR /&gt;
	Elephant&lt;/P&gt;

&lt;P&gt;&lt;STRONG class="quote-header"&gt;Quote:&lt;/STRONG&gt;&lt;/P&gt;

&lt;BLOCKQUOTE class="quote-msg quote-nest-1 odd"&gt;
	&lt;DIV class="quote-author"&gt;&lt;EM class="placeholder"&gt;chao j.&lt;/EM&gt; wrote:&lt;/DIV&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;Hi&lt;/P&gt;

	&lt;P&gt;I have tested the command for connecting to IAS a few month ago. and it works well for me:&lt;/P&gt;

	&lt;P&gt;curl -1 --tlsv1.2 -v -E bob_pfx.pem &amp;nbsp;&lt;A href="https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sigrl/00000BCD"&gt;https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sig...&lt;/A&gt;&lt;/P&gt;

	&lt;P&gt;Today, I test it again, it shows the error:&lt;/P&gt;

	&lt;P&gt;* Hostname was NOT found in DNS cache&lt;BR /&gt;
		* &amp;nbsp; Trying 208.39.114.225...&lt;BR /&gt;
		* Connected to test-as.sgx.trustedservices.intel.com (208.39.114.225) port 443 (#0)&lt;BR /&gt;
		* successfully set certificate verify locations:&lt;BR /&gt;
		* &amp;nbsp; CAfile: none&lt;BR /&gt;
		&amp;nbsp; CApath: /etc/ssl/certs&lt;BR /&gt;
		* SSLv3, TLS handshake, Client hello (1):&lt;BR /&gt;
		* SSLv3, TLS handshake, Server hello (2):&lt;BR /&gt;
		* SSLv3, TLS handshake, CERT (11):&lt;BR /&gt;
		* SSLv3, TLS handshake, Server key exchange (12):&lt;BR /&gt;
		* SSLv3, TLS handshake, Request CERT (13):&lt;BR /&gt;
		* SSLv3, TLS handshake, Server finished (14):&lt;BR /&gt;
		* SSLv3, TLS handshake, CERT (11):&lt;BR /&gt;
		* SSLv3, TLS handshake, Client key exchange (16):&lt;BR /&gt;
		* SSLv3, TLS handshake, CERT verify (15):&lt;BR /&gt;
		* SSLv3, TLS change cipher, Client hello (1):&lt;BR /&gt;
		* SSLv3, TLS handshake, Finished (20):&lt;BR /&gt;
		* Unknown SSL protocol error in connection to test-as.sgx.trustedservices.intel.com:443&lt;BR /&gt;
		* Closing connection 0&lt;BR /&gt;
		curl: (35) Unknown SSL protocol error in connection to test-as.sgx.trustedservices.intel.com:443&lt;/P&gt;

	&lt;P&gt;Anyone know how to handle it, Thanks a lot.&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 08:12:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Software-Guard-Extensions/IAS-request-error/m-p/1091658#M818</guid>
      <dc:creator>Elephant</dc:creator>
      <dc:date>2017-07-27T08:12:02Z</dc:date>
    </item>
  </channel>
</rss>

