<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>nrF52 to Exosite</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/22976/nrf52-to-exosite</link><description>I am trying to set up a nrF52 -&amp;gt; Rpi v3 -&amp;gt; Exosite through CoAp as in the nrF5 iot sdk. The nrF52 to rpi works as I am able to ping the nrF52 through its global link address and the second LED lights up. Has anyone recently tried doing this lately, it</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 23 Jun 2017 16:40:27 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/22976/nrf52-to-exosite" /><item><title>RE: nrF52 to Exosite</title><link>https://devzone.nordicsemi.com/thread/90398?ContentTypeID=1</link><pubDate>Fri, 23 Jun 2017 16:40:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0ab80e7f-4e31-4e9a-82b5-b28de70e3fad</guid><dc:creator>amjabb</dc:creator><description>&lt;p&gt;I used an IPv6 tool and it looks like coap.exosite.com is up and running. Looks like the problem was on my end after all, thanks for your help!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrF52 to Exosite</title><link>https://devzone.nordicsemi.com/thread/90397?ContentTypeID=1</link><pubDate>Fri, 23 Jun 2017 07:04:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4d4e3471-56ec-43fa-98dd-52e4f4eaf787</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Yes, the example will query the Google IPv6 DNS server for the IPv6 address of the hostname &lt;em&gt;coap.exosite.com&lt;/em&gt;. If you do not have IPv6 connection, it will not reach the server, and you will not get the address. You can try pinging the coap server using an online IPv6 ping tool to check if it&amp;#39;s up and running.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrF52 to Exosite</title><link>https://devzone.nordicsemi.com/thread/90400?ContentTypeID=1</link><pubDate>Thu, 22 Jun 2017 21:08:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:748d5b52-2063-4f71-8959-ab2a173b8ef3</guid><dc:creator>amjabb</dc:creator><description>&lt;p&gt;Sounds like setting up an IPv6 tunnel would be my only option considering that I am attempting to send the packets through the RPi to the exosite cloud server. So, I am assuming that when the nrf52 says
&amp;quot;DNS Response for hostname: coap.exosite.com, with 0 IPv6 addresses and status 0x0000C440&amp;quot;
it could mean that my network doesn&amp;#39;t support IPv6 not that the exosite server I am trying to access is faulty.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrF52 to Exosite</title><link>https://devzone.nordicsemi.com/thread/90403?ContentTypeID=1</link><pubDate>Thu, 22 Jun 2017 20:34:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ddb0e526-ce0b-457b-bc13-c8d99bf9b4aa</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Yes, this means you don&amp;#39;t have IPv6 connection. There is a couple of solutions to make the devices connect to internet:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Setup IPv6 tunnelling. This will allow two-way communication with the devices from IPv6 internet. You can find a blog post providing some details on one alternative provider &lt;a href="https://devzone.nordicsemi.com/blogs/729/create-hurricane-tunnel-broker-on-raspberry-pi/"&gt;here&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;NAT64: This solution run on the RPi and will translate the IPv6 packets from the IoT device into IPv4 packets. This allows your IPv6 enabled IoT devices to talk to IPv4 internet, but not to IPv6 internet. It is also not trivial to connect to the IoT devices from IPv4 internet, as this translation is more complex.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I would suggest going for the IPv6 tunnel solution until you get native IPv6 connection. This will make the transition simpler when you get access to IPv6 network.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrF52 to Exosite</title><link>https://devzone.nordicsemi.com/thread/90401?ContentTypeID=1</link><pubDate>Thu, 22 Jun 2017 20:25:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5cadfd9d-2ce4-49d7-91ae-eb469f910b6c</guid><dc:creator>amjabb</dc:creator><description>&lt;p&gt;No IPv6 address detected [more info]&lt;/p&gt;
&lt;p&gt;Good news! Your current configuration will continue to work as web sites enable IPv6.&lt;/p&gt;
&lt;p&gt;You appear to be able to browse the IPv4 Internet only. You will not be able to reach IPv6-only sites.&lt;/p&gt;
&lt;p&gt;Your DNS server (possibly run by your ISP) appears to have IPv6 Internet access.&lt;/p&gt;
&lt;p&gt;This is what the online test service returns. Does this mean I dont have an IPv6 connection? If so is there a way around it? Thank you so much for your help.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrF52 to Exosite</title><link>https://devzone.nordicsemi.com/thread/90399?ContentTypeID=1</link><pubDate>Thu, 22 Jun 2017 20:09:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a8722678-ad1f-4ee1-b25e-feb54115882d</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;You can test your IPv6 capabilities from a online test service like &lt;a href="http://test-ipv6.com/"&gt;this one&lt;/a&gt;, or you can try pinging an IPv6-only webpage from the Rpi:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ping6 ipv6.google.com
&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrF52 to Exosite</title><link>https://devzone.nordicsemi.com/thread/90396?ContentTypeID=1</link><pubDate>Thu, 22 Jun 2017 15:55:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f84c3594-4db2-425c-94da-23190fd64916</guid><dc:creator>amjabb</dc:creator><description>&lt;p&gt;Im assuming so, considering that i am on a corporate network in the united states.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrF52 to Exosite</title><link>https://devzone.nordicsemi.com/thread/90402?ContentTypeID=1</link><pubDate>Thu, 22 Jun 2017 10:51:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:55618bff-3140-46b8-bea9-8f3116f24c75</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Do you have IPv6 connection on your local network and from your ISP?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>