<?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 Re: What is Restconf HTTP port on XE sandbox in Tools</title>
    <link>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4111466#M1594</link>
    <description>&lt;P&gt;Hi Yan,&lt;/P&gt;
&lt;P&gt;I can see that WebUI over HTTP just works but when it comes to restconf it doesn't. From documentation it seems to me that:&lt;/P&gt;
&lt;PRE&gt;conf t&lt;BR /&gt;ip http server
no ip http secure-server&lt;BR /&gt;restconf
end&lt;/PRE&gt;
&lt;P&gt;should do the trick and you could use port 80 to connect via restconf. However I had no luck and that's why I was asking to the community a couple of weeks ago. I found&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;a workaround to that, it's not nice but it works. I used a local instance of NGINX working as a HTTPS reverse-proxy, configuration is like this:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;events {
}
http {
    server {
        listen 80;
        listen [::]:80;

        access_log /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;

        location / {
            proxy_pass https://&amp;lt;my_target_ip_address&amp;gt;:443;
        }
    }
}&lt;/PRE&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you manage to get HTTP direct connectivity please post a message here. I would be very interested into it!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Val&lt;/P&gt;</description>
    <pubDate>Tue, 30 Jun 2020 18:16:39 GMT</pubDate>
    <dc:creator>vadigreg</dc:creator>
    <dc:date>2020-06-30T18:16:39Z</dc:date>
    <item>
      <title>What is Restconf HTTP port on XE sandbox</title>
      <link>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4108337#M1593</link>
      <description>&lt;P&gt;I am trying to run a test case on XE &lt;A href="https://devnetsandbox.cisco.com/RM/Diagram/Index/27d9747a-db48-4565-8d44-df318fce37ad?diagramType=Topology" target="_self"&gt;sandbox&lt;/A&gt;. When I try to access documented Restconf port, I am getting that the port is used for HTTPS. But YDK does not support HTTPS protocol (known limitation). Is there a port assigned for unsecured HTTP protocol?&lt;/P&gt;&lt;P&gt;My script to connect:&lt;/P&gt;&lt;PRE&gt;from ydk.providers import RestconfServiceProvider&lt;BR /&gt;from ydk.types import EncodingFormat&lt;BR /&gt;from ydk.path import Repository&lt;BR /&gt;&lt;BR /&gt;from ydk.models import openconfig as oc&lt;BR /&gt;&lt;BR /&gt;repo = Repository(oc.__path__[0]+'/_yang')&lt;BR /&gt;    provider = RestconfServiceProvider(&lt;BR /&gt;    repo,&lt;BR /&gt;    'ios-xe-mgmt.cisco.com',&lt;BR /&gt;    'developer',&lt;BR /&gt;    'C1sco12345',&lt;BR /&gt;    9443,&lt;BR /&gt;    EncodingFormat.JSON)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I am getting this error:&lt;/P&gt;&lt;PRE&gt;&lt;FONT size="2"&gt;(venv) Yans-Air:ydk-gen ygorelik$ python scripts/community/xe_restconf_interface.py &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;2020-06-23 14:57:03,847 - ydk - INFO - Unable to retrieve restconf root. Assuming '/restconf' as the root&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;2020-06-23 14:57:03,847 - ydk - INFO - Ready to communicate with http://ios-xe-mgmt.cisco.com:9443/restconf using http&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;2020-06-23 14:57:05,918 - ydk - ERROR - Operation did not succeed. Got response: 400 : &amp;lt;html&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;400 The plain HTTP request was sent to HTTPS port&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;body bgcolor="white"&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;center&amp;gt;&amp;lt;h1&amp;gt;400 Bad Request&amp;lt;/h1&amp;gt;&amp;lt;/center&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;center&amp;gt;The plain HTTP request was sent to HTTPS port&amp;lt;/center&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;hr&amp;gt;&amp;lt;center&amp;gt;nginx&amp;lt;/center&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;/body&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;/html&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Traceback (most recent call last):&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;File "scripts/community/xe_restconf_interface.py", line 41, in &amp;lt;module&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;EncodingFormat.JSON)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;RuntimeError: YServiceProviderError: Operation did not succeed. Got response: 400 : &amp;lt;html&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;&lt;FONT color="#800000"&gt;&lt;STRONG&gt;400 The plain HTTP request was sent to HTTPS port&lt;/STRONG&gt;&lt;/FONT&gt;&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;body bgcolor="white"&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;center&amp;gt;&amp;lt;h1&amp;gt;400 Bad Request&amp;lt;/h1&amp;gt;&amp;lt;/center&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;center&amp;gt;The plain HTTP request was sent to HTTPS port&amp;lt;/center&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;hr&amp;gt;&amp;lt;center&amp;gt;nginx&amp;lt;/center&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;/body&amp;gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&amp;lt;/html&amp;gt;&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Please share your experience of using Restconf with Cisco sandboxes .&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 22:18:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4108337#M1593</guid>
      <dc:creator>yangorelik</dc:creator>
      <dc:date>2020-06-23T22:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: What is Restconf HTTP port on XE sandbox</title>
      <link>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4111466#M1594</link>
      <description>&lt;P&gt;Hi Yan,&lt;/P&gt;
&lt;P&gt;I can see that WebUI over HTTP just works but when it comes to restconf it doesn't. From documentation it seems to me that:&lt;/P&gt;
&lt;PRE&gt;conf t&lt;BR /&gt;ip http server
no ip http secure-server&lt;BR /&gt;restconf
end&lt;/PRE&gt;
&lt;P&gt;should do the trick and you could use port 80 to connect via restconf. However I had no luck and that's why I was asking to the community a couple of weeks ago. I found&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;a workaround to that, it's not nice but it works. I used a local instance of NGINX working as a HTTPS reverse-proxy, configuration is like this:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;events {
}
http {
    server {
        listen 80;
        listen [::]:80;

        access_log /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;

        location / {
            proxy_pass https://&amp;lt;my_target_ip_address&amp;gt;:443;
        }
    }
}&lt;/PRE&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you manage to get HTTP direct connectivity please post a message here. I would be very interested into it!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Val&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 18:16:39 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4111466#M1594</guid>
      <dc:creator>vadigreg</dc:creator>
      <dc:date>2020-06-30T18:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: What is Restconf HTTP port on XE sandbox</title>
      <link>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4140831#M1595</link>
      <description>&lt;P&gt;Hi Yan,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you use NETCONF instead of RESTCONF when YDK talking to Sandbox ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sandbox&lt;/P&gt;&lt;DIV&gt;CSR1000V Host: ios-xe-mgmt-latest.cisco.com&lt;/DIV&gt;&lt;DIV&gt;SSH Port: 8181&lt;/DIV&gt;&lt;DIV&gt;NETCONF Port: 10000&lt;/DIV&gt;&lt;DIV&gt;RESTCONF Ports: 9443 (HTTPS)&lt;/DIV&gt;&lt;DIV&gt;Username: developer&lt;/DIV&gt;&lt;DIV&gt;Password: C1sco12345&lt;/DIV&gt;&lt;P&gt;&lt;!-- 5f39ae17-8c62-4a45-bc43-b32064c9388a:W3siYmxvY2tJZCI6IjkxODUtMTU5ODIzNTgwMTc0MCIsImJsb2NrVHlwZSI6InBhcmFncmFwaCIsInN0eWxlcyI6eyJhbGlnbiI6ImxlZnQiLCJpbmRlbnQiOjAsInRleHQtaW5kZW50IjowLCJsaW5lLWhlaWdodCI6MS43NSwiYmFjay1jb2xvciI6IiIsInBhZGRpbmciOiIifSwidHlwZSI6InBhcmFncmFwaCIsInJpY2hUZXh0Ijp7ImRhdGEiOlt7ImNoYXIiOiIgIn0seyJjaGFyIjoiQyJ9LHsiY2hhciI6IlMifSx7ImNoYXIiOiJSIn0seyJjaGFyIjoiMSJ9LHsiY2hhciI6IjAifSx7ImNoYXIiOiIwIn0seyJjaGFyIjoiMCJ9LHsiY2hhciI6IlYifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiSCJ9LHsiY2hhciI6Im8ifSx7ImNoYXIiOiJzIn0seyJjaGFyIjoidCJ9LHsiY2hhciI6IjoifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiaSJ9LHsiY2hhciI6Im8ifSx7ImNoYXIiOiJzIn0seyJjaGFyIjoiLSJ9LHsiY2hhciI6IngifSx7ImNoYXIiOiJlIn0seyJjaGFyIjoiLSJ9LHsiY2hhciI6Im0ifSx7ImNoYXIiOiJnIn0seyJjaGFyIjoibSJ9LHsiY2hhciI6InQifSx7ImNoYXIiOiItIn0seyJjaGFyIjoibCJ9LHsiY2hhciI6ImEifSx7ImNoYXIiOiJ0In0seyJjaGFyIjoiZSJ9LHsiY2hhciI6InMifSx7ImNoYXIiOiJ0In0seyJjaGFyIjoiLiJ9LHsiY2hhciI6ImMifSx7ImNoYXIiOiJpIn0seyJjaGFyIjoicyJ9LHsiY2hhciI6ImMifSx7ImNoYXIiOiJvIn0seyJjaGFyIjoiLiJ9LHsiY2hhciI6ImMifSx7ImNoYXIiOiJvIn0seyJjaGFyIjoibSJ9XSwiaXNSaWNoVGV4dCI6dHJ1ZSwia2VlcExpbmVCcmVhayI6dHJ1ZX19LHsiYmxvY2tJZCI6IjM3OTAtMTU5ODIzNTgwMTc0MCIsImJsb2NrVHlwZSI6InBhcmFncmFwaCIsInN0eWxlcyI6eyJhbGlnbiI6ImxlZnQiLCJpbmRlbnQiOjAsInRleHQtaW5kZW50IjowLCJsaW5lLWhlaWdodCI6MS43NSwiYmFjay1jb2xvciI6IiIsInBhZGRpbmciOiIifSwidHlwZSI6InBhcmFncmFwaCIsInJpY2hUZXh0Ijp7ImRhdGEiOlt7ImNoYXIiOiIgIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IlMifSx7ImNoYXIiOiJTIn0seyJjaGFyIjoiSCJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiJQIn0seyJjaGFyIjoibyJ9LHsiY2hhciI6InIifSx7ImNoYXIiOiJ0In0seyJjaGFyIjoiOiJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiI4In0seyJjaGFyIjoiMSJ9LHsiY2hhciI6IjgifSx7ImNoYXIiOiIxIn1dLCJpc1JpY2hUZXh0Ijp0cnVlLCJrZWVwTGluZUJyZWFrIjp0cnVlfX0seyJibG9ja0lkIjoiMzQzMC0xNTk4MjM1ODAxNzQwIiwiYmxvY2tUeXBlIjoicGFyYWdyYXBoIiwic3R5bGVzIjp7ImFsaWduIjoibGVmdCIsImluZGVudCI6MCwidGV4dC1pbmRlbnQiOjAsImxpbmUtaGVpZ2h0IjoxLjc1LCJiYWNrLWNvbG9yIjoiIiwicGFkZGluZyI6IiJ9LCJ0eXBlIjoicGFyYWdyYXBoIiwicmljaFRleHQiOnsiZGF0YSI6W3siY2hhciI6IiAifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiTiJ9LHsiY2hhciI6IkUifSx7ImNoYXIiOiJUIn0seyJjaGFyIjoiQyJ9LHsiY2hhciI6Ik8ifSx7ImNoYXIiOiJOIn0seyJjaGFyIjoiRiJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiJQIn0seyJjaGFyIjoibyJ9LHsiY2hhciI6InIifSx7ImNoYXIiOiJ0In0seyJjaGFyIjoiOiJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiIxIn0seyJjaGFyIjoiMCJ9LHsiY2hhciI6IjAifSx7ImNoYXIiOiIwIn0seyJjaGFyIjoiMCJ9XSwiaXNSaWNoVGV4dCI6dHJ1ZSwia2VlcExpbmVCcmVhayI6dHJ1ZX19LHsiYmxvY2tJZCI6Ijc3NTgtMTU5ODIzNTgwMTc0MCIsImJsb2NrVHlwZSI6InBhcmFncmFwaCIsInN0eWxlcyI6eyJhbGlnbiI6ImxlZnQiLCJpbmRlbnQiOjAsInRleHQtaW5kZW50IjowLCJsaW5lLWhlaWdodCI6MS43NSwiYmFjay1jb2xvciI6IiIsInBhZGRpbmciOiIifSwidHlwZSI6InBhcmFncmFwaCIsInJpY2hUZXh0Ijp7ImRhdGEiOlt7ImNoYXIiOiIgIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IlIifSx7ImNoYXIiOiJFIn0seyJjaGFyIjoiUyJ9LHsiY2hhciI6IlQifSx7ImNoYXIiOiJDIn0seyJjaGFyIjoiTyJ9LHsiY2hhciI6Ik4ifSx7ImNoYXIiOiJGIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IlAifSx7ImNoYXIiOiJvIn0seyJjaGFyIjoiciJ9LHsiY2hhciI6InQifSx7ImNoYXIiOiJzIn0seyJjaGFyIjoiOiJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiI5In0seyJjaGFyIjoiNCJ9LHsiY2hhciI6IjQifSx7ImNoYXIiOiIzIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IigifSx7ImNoYXIiOiJIIn0seyJjaGFyIjoiVCJ9LHsiY2hhciI6IlQifSx7ImNoYXIiOiJQIn0seyJjaGFyIjoiUyJ9LHsiY2hhciI6IikifSx7ImNoYXIiOiIgIn1dLCJpc1JpY2hUZXh0Ijp0cnVlLCJrZWVwTGluZUJyZWFrIjp0cnVlfX0seyJibG9ja0lkIjoiMjUyMy0xNTk4MjM1ODAxNzQwIiwiYmxvY2tUeXBlIjoicGFyYWdyYXBoIiwic3R5bGVzIjp7ImFsaWduIjoibGVmdCIsImluZGVudCI6MCwidGV4dC1pbmRlbnQiOjAsImxpbmUtaGVpZ2h0IjoxLjc1LCJiYWNrLWNvbG9yIjoiIiwicGFkZGluZyI6IiJ9LCJ0eXBlIjoicGFyYWdyYXBoIiwicmljaFRleHQiOnsiZGF0YSI6W3siY2hhciI6IiAifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiJVIn0seyJjaGFyIjoicyJ9LHsiY2hhciI6ImUifSx7ImNoYXIiOiJyIn0seyJjaGFyIjoibiJ9LHsiY2hhciI6ImEifSx7ImNoYXIiOiJtIn0seyJjaGFyIjoiZSJ9LHsiY2hhciI6IjoifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiZCJ9LHsiY2hhciI6ImUifSx7ImNoYXIiOiJ2In0seyJjaGFyIjoiZSJ9LHsiY2hhciI6ImwifSx7ImNoYXIiOiJvIn0seyJjaGFyIjoicCJ9LHsiY2hhciI6ImUifSx7ImNoYXIiOiJyIn1dLCJpc1JpY2hUZXh0Ijp0cnVlLCJrZWVwTGluZUJyZWFrIjp0cnVlfX0seyJibG9ja0lkIjoiMTAxNC0xNTk4MjM1ODAxNzQwIiwiYmxvY2tUeXBlIjoicGFyYWdyYXBoIiwic3R5bGVzIjp7ImFsaWduIjoibGVmdCIsImluZGVudCI6MCwidGV4dC1pbmRlbnQiOjAsImxpbmUtaGVpZ2h0IjoxLjc1LCJiYWNrLWNvbG9yIjoiIiwicGFkZGluZyI6IiJ9LCJ0eXBlIjoicGFyYWdyYXBoIiwicmljaFRleHQiOnsiZGF0YSI6W3siY2hhciI6IiAifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiICJ9LHsiY2hhciI6IiAifSx7ImNoYXIiOiJQIn0seyJjaGFyIjoiYSJ9LHsiY2hhciI6InMifSx7ImNoYXIiOiJzIn0seyJjaGFyIjoidyJ9LHsiY2hhciI6Im8ifSx7ImNoYXIiOiJyIn0seyJjaGFyIjoiZCJ9LHsiY2hhciI6IjoifSx7ImNoYXIiOiIgIn0seyJjaGFyIjoiQyJ9LHsiY2hhciI6IjEifSx7ImNoYXIiOiJzIn0seyJjaGFyIjoiYyJ9LHsiY2hhciI6Im8ifSx7ImNoYXIiOiIxIn0seyJjaGFyIjoiMiJ9LHsiY2hhciI6IjMifSx7ImNoYXIiOiI0In0seyJjaGFyIjoiNSJ9LHsiY2hhciI6IiAifV0sImlzUmljaFRleHQiOnRydWUsImtlZXBMaW5lQnJlYWsiOnRydWV9fV0= --&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2020 06:10:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4140831#M1595</guid>
      <dc:creator>Jacky_hotel_california</dc:creator>
      <dc:date>2020-08-25T06:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: What is Restconf HTTP port on XE sandbox</title>
      <link>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4141437#M1596</link>
      <description>&lt;P&gt;Hi Jacky&lt;/P&gt;&lt;P&gt;The root cause of the issue was protocol HTTPS, which was not supported by YDK-0.8.4 (see issue &lt;A href="https://github.com/CiscoDevNet/ydk-gen/issues/917" target="_self"&gt;#917&lt;/A&gt;). As of 0.8.5 that issue has been partially resolved (permanently disabled peer and host name verification). I have used the sandbox to debug and test newly developed code.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2020 06:00:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4141437#M1596</guid>
      <dc:creator>yangorelik</dc:creator>
      <dc:date>2020-08-26T06:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: What is Restconf HTTP port on XE sandbox</title>
      <link>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4142072#M1597</link>
      <description>&lt;P&gt;Hi Yan,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I got your point.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am glad to see your testing is successful now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Jacky&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2020 22:28:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4142072#M1597</guid>
      <dc:creator>Jacky_hotel_california</dc:creator>
      <dc:date>2020-08-26T22:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: What is Restconf HTTP port on XE sandbox</title>
      <link>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4149588#M1598</link>
      <description>&lt;P&gt;Hello Yan,&lt;/P&gt;
&lt;P&gt;I'm trying this with python but I'm getting this error when I instantiate the RestconfServiceProvider:&lt;BR /&gt;&lt;BR /&gt;RuntimeError: YClientError: Peer certificate cannot be authenticated with given CA certificates&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My understanding is that certificate validation on client should be skipped.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can see here&amp;nbsp;&lt;A href="https://github.com/CiscoDevNet/ydk-gen/blob/11fe46d83358b6c55a2907d19695aa192ab4e5d9/sdk/cpp/core/src/restconf_client.cpp#L150" target="_blank" rel="noopener"&gt;https://github.com/CiscoDevNet/ydk-gen/blob/11fe46d83358b6c55a2907d19695aa192ab4e5d9/sdk/cpp/core/src/restconf_client.cpp#L150&lt;/A&gt;&amp;nbsp;that I could probably hit:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="pl-c1"&gt;curl_easy_setopt&lt;/SPAN&gt;&lt;SPAN&gt;(curl, CURLOPT_SSL_VERIFYPEER, &lt;/SPAN&gt;&lt;SPAN class="pl-c1"&gt;0L&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="pl-c1"&gt;curl_easy_setopt&lt;/SPAN&gt;(curl, CURLOPT_SSL_VERIFYHOST, &lt;SPAN class="pl-c1"&gt;0L&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Possibly because we don't pass ssl_options here:&amp;nbsp;&lt;A href="https://github.com/CiscoDevNet/ydk-gen/blob/1020e483853de9195375a8f5be2a203f050c3a7e/sdk/cpp/core/src/restconf_session.cpp#L65" target="_blank"&gt;https://github.com/CiscoDevNet/ydk-gen/blob/1020e483853de9195375a8f5be2a203f050c3a7e/sdk/cpp/core/src/restconf_session.cpp#L65&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Is there a way to totally skip certificate validation?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Val&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2020 08:43:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4149588#M1598</guid>
      <dc:creator>vadigreg</dc:creator>
      <dc:date>2020-09-11T08:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: What is Restconf HTTP port on XE sandbox</title>
      <link>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4149634#M1599</link>
      <description>&lt;P&gt;Ok forget about this, apparently it was still running with 0.8.4&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2020 10:13:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/what-is-restconf-http-port-on-xe-sandbox/m-p/4149634#M1599</guid>
      <dc:creator>vadigreg</dc:creator>
      <dc:date>2020-09-11T10:13:11Z</dc:date>
    </item>
  </channel>
</rss>

