<?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 [API] Get VPN status Non-Meraki peers in Network Platform API</title>
    <link>https://community.cisco.com/t5/network-platform-api/api-get-vpn-status-non-meraki-peers/m-p/5441390#M6480</link>
    <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I've script a lot in Python for execute API requests to my Meraki dashboard.&lt;/P&gt;&lt;P&gt;I found how get the vpn site-to-site status in a network but i dont find how get VPN status of Non-Meraki peers in a Network by API request.&lt;/P&gt;&lt;P&gt;Path in dashboard :&lt;/P&gt;&lt;P&gt;In a network : "Security &amp;amp; SD-WAN" &amp;gt; "VPN status" &amp;gt; "Non-Meraki peers"&lt;/P&gt;&lt;P&gt;An API request exist or not ?&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Aug 2020 13:53:54 GMT</pubDate>
    <dc:creator>Th1b0plz</dc:creator>
    <dc:date>2020-08-19T13:53:54Z</dc:date>
    <item>
      <title>[API] Get VPN status Non-Meraki peers</title>
      <link>https://community.cisco.com/t5/network-platform-api/api-get-vpn-status-non-meraki-peers/m-p/5441390#M6480</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I've script a lot in Python for execute API requests to my Meraki dashboard.&lt;/P&gt;&lt;P&gt;I found how get the vpn site-to-site status in a network but i dont find how get VPN status of Non-Meraki peers in a Network by API request.&lt;/P&gt;&lt;P&gt;Path in dashboard :&lt;/P&gt;&lt;P&gt;In a network : "Security &amp;amp; SD-WAN" &amp;gt; "VPN status" &amp;gt; "Non-Meraki peers"&lt;/P&gt;&lt;P&gt;An API request exist or not ?&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 13:53:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/api-get-vpn-status-non-meraki-peers/m-p/5441390#M6480</guid>
      <dc:creator>Th1b0plz</dc:creator>
      <dc:date>2020-08-19T13:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: [API] Get VPN status Non-Meraki peers</title>
      <link>https://community.cisco.com/t5/network-platform-api/api-get-vpn-status-non-meraki-peers/m-p/5441391#M6481</link>
      <description>&lt;P&gt;Hi &lt;A href="https://community.meraki.com/t5/user/viewprofilepage/user-id/47863"&gt;@Th1b0plz&lt;/A&gt;!&lt;/P&gt;&lt;P&gt;The SDK method &lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;getOrganizationApplianceVpnStatuses&lt;/FONT&gt; handles both Meraki and third-party VPN peers.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.cisco.com/meraki/api-v1/#!get-organization-appliance-vpn-statuses" target="_blank" rel="nofollow noopener noreferrer"&gt;https://developer.cisco.com/meraki/api-v1/#!get-organization-appliance-vpn-statuses&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 18:03:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/api-get-vpn-status-non-meraki-peers/m-p/5441391#M6481</guid>
      <dc:creator>John-on-API</dc:creator>
      <dc:date>2020-08-19T18:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: [API] Get VPN status Non-Meraki peers</title>
      <link>https://community.cisco.com/t5/network-platform-api/api-get-vpn-status-non-meraki-peers/m-p/5441392#M6482</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;Thanks for your answer.&lt;/P&gt;&lt;P&gt;I tried the request this morning.&lt;/P&gt;&lt;P&gt;It working but for the part of thirdPartyVpnPeers it don't return the status of vpn peers, i have just the name and the public IP&lt;/P&gt;&lt;P&gt;The json return this :&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;"merakiVpnPeers":[&lt;BR /&gt;{&lt;BR /&gt;"networkId":"xxxxxxx",&lt;BR /&gt;"networkName":"xxxxx",&lt;BR /&gt;"reachability":"reachable"&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"networkId":"xxxxx",&lt;BR /&gt;"networkName":"xxxxxx",&lt;BR /&gt;"reachability":"reachable"&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;&lt;STRONG&gt;"thirdPartyVpnPeers":[&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"name":"name one",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"publicIp":"ip one"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"name":"name two",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"publicIp":"ip two"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;and i would like get the thirdPartyVpnPeers status reachable or unreachable&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 09:35:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/api-get-vpn-status-non-meraki-peers/m-p/5441392#M6482</guid>
      <dc:creator>Th1b0plz</dc:creator>
      <dc:date>2020-08-20T09:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: [API] Get VPN status Non-Meraki peers</title>
      <link>https://community.cisco.com/t5/network-platform-api/api-get-vpn-status-non-meraki-peers/m-p/5441393#M6483</link>
      <description>&lt;P&gt;Sorry to see that, &lt;A href="https://community.meraki.com/t5/user/viewprofilepage/user-id/47863"&gt;@Th1b0plz&lt;/A&gt;! The spec outlines that third-party VPN peers should have reachability information, so something seems to be going wrong, here. I recommend following up with the support directly to find out why it's not appearing in your case, so that they can explore the settings with you in more detail and help you test.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token property"&gt;"thirdPartyVpnPeers"&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;:&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;[&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;{&lt;/SPAN&gt; &lt;SPAN class="token property"&gt;"name"&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;:&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"Tokyo Office"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token property"&gt;"publicIp"&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;:&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"222.333.444.555"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token property"&gt;"reachability"&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;:&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"reachable"&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;} ]&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 19:25:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/api-get-vpn-status-non-meraki-peers/m-p/5441393#M6483</guid>
      <dc:creator>John-on-API</dc:creator>
      <dc:date>2020-08-20T19:25:00Z</dc:date>
    </item>
  </channel>
</rss>

