<?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: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down in Wireless</title>
    <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745426#M249835</link>
    <description>&lt;P&gt;Thanks, I'll give that a shot. Not sure how I missed that it came out last Thursday. I guess I need to confirm my notification settings.&lt;/P&gt;</description>
    <pubDate>Tue, 27 Dec 2022 03:49:06 GMT</pubDate>
    <dc:creator>Ethan Grinnell</dc:creator>
    <dc:date>2022-12-27T03:49:06Z</dc:date>
    <item>
      <title>Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745115#M249816</link>
      <description>&lt;P&gt;After upgrading our 9800 WLC to 17.9.2, Prime has started indicating that the Coral connection is down. It was fine in 17.6.x. Prime is 3.10.2 with all of the latest patches. As far as I have been able to determine the actual telemetry stream is fine though. AP discovery completes with no issues, I have client details, etc.&lt;/P&gt;&lt;P&gt;This document and this bug both mention the command:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;show telemetry internal protocol cntp-tcp manager x.x.x.x 20828&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.cisco.com/c/en/us/support/docs/wireless/catalyst-9800-series-wireless-controllers/214286-managing-catalyst-9800-wireless-controll.html" target="_blank" rel="noopener"&gt;https://www.cisco.com/c/en/us/support/docs/wireless/catalyst-9800-series-wireless-controllers/214286-managing-catalyst-9800-wireless-controll.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvs40684" target="_blank" rel="noopener"&gt;https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvs40684&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It appears that Prime uses that command in the "Catalyst 9800 Telemetry Coral Health" service check. However, as of 17.8.1+ that command&amp;nbsp; requires additional arguments (It wants the vrf-id and mgmt IP). Prime doesn't use the VRF-aware command syntax though. I've tested with both 9800-80 and 9800-L-F models, I can't speak for any other 9800 model&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;wc9800-06#show telemetry internal protocol cntp-tcp manager x.x.x.x 20830 ?
  source-vrf  Source VRF

wc9800-06#
wc9800-06#show telemetry internal protocol cntp-tcp manager PrimeInfrastructure_IP 20830 source-vrf 0 WLC_MGMT_IP
Telemetry protocol manager stats:

Con str                : PrimeInfrastructure_IP:20830:0:WLC_MGMT_IP
Sockfd                 : 109
Protocol               : cntp-tcp
State                  : CNDP_STATE_CONNECTED
Table id               : 0
Wait Mask              : 
Connection Retries     : 0
Send Retries           : 0
Pending events         : 0
Source ip              : WLC_MGMT_IP
Bytes Sent             : 22288781
Msgs Sent              : 20578
Msgs Received          : 0
Creation time:         : Sun Dec 25 16:32:27:746
Last connected time:   : Sun Dec 25 16:32:27:747
Last disconnect time:  : 
Last error:            : 
Connection flaps:      : 0
Last flap Reason:      : 
Keep Alive Timeouts:   : 0
Last Transport Error   : No Error&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a test to see if this was the only thing that is affecting that service, I made an EEM script that translates from the original command to the new syntax. With that script in place Prime's "Catalyst 9800 Telemetry Coral Health" service is happy. So it seems it was that single command's syntax changing that broke it. To be clear, this doesn't affect telemetry actually functioning, it only impacts Prime's reporting of the telemetry status.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;event manager applet telemManagerCmd authorization bypass
 event cli pattern "^show telemetry internal protocol cntp-tcp manager [[:digit:]\.]+ [[:digit:]]+$" enter
 action 000 set wlc_mgmt_ip" "Unknown"
 action 001 set wlc_mgmt_vrf_id "0"
 action 002 set pi_ip "Unknown"
 action 003 set pi_port "Unknown"
 action 004 regexp "([[:digit:]\.]+) ([[:digit:]]+)" "$_cli_msg" ignore pi_ip pi_port
 action 005 cli command "enable"
 action 006 cli command "terminal length 0"
 action 007 cli command "terminal width 0"
 action 008 cli command "show wireless interface summary"
 action 009 regexp "[[:alnum:]\/]+[[:space:]]+Management[[:space:]]+[[:digit:]]+[[:space:]]+([[:digit:]\.]+)" "$_cli_result" ignore wlc_mgmt_ip
 action 010 cli command "show telemetry internal protocol cntp-tcp manager $pi_ip $pi_port source-vrf $wlc_mgmt_vrf_id $wlc_mgmt_ip"
 action 011 puts "$_cli_result"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is anyone else seeing this with 9800 WLC versions 17.8.1 and higher? I'm curious if there is something particular to our setup where it makes the older CLI command disappear or if Prime uses the VRF-aware command syntax somehow.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 22:37:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745115#M249816</guid>
      <dc:creator>Ethan Grinnell</dc:creator>
      <dc:date>2022-12-29T22:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745157#M249817</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;- FYI :&amp;nbsp;&lt;A href="https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvt65754" target="_blank"&gt;https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvt65754&lt;/A&gt;&amp;nbsp;, check if that could help for your current predicament too ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;M.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 07:24:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745157#M249817</guid>
      <dc:creator>Mark Elsen</dc:creator>
      <dc:date>2022-12-26T07:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745250#M249818</link>
      <description>&lt;P&gt;Thanks for the link.&lt;/P&gt;&lt;P&gt;I'm not sure how the Coral version ties into WLC version, it doesn't need to be a 1-to-1 correspondence though. I think that Coral is 17.9.1 in Prime 3.10.2.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 08:43:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745250#M249818</guid>
      <dc:creator>Ethan Grinnell</dc:creator>
      <dc:date>2022-12-26T08:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745285#M249819</link>
      <description>&lt;P&gt;Do you have any firewall between ? check these ports are allowed :&lt;/P&gt;
&lt;UL class="ul"&gt;
&lt;LI class="li"&gt;
&lt;P class="p"&gt;Cisco Prime Infrastructure to controller: TCP port 830 is used by Cisco Prime Infrastructure to push the telemetry configuration to the controller (using NETCONF).&lt;/P&gt;
&lt;/LI&gt;
&lt;LI class="li"&gt;
&lt;P class="p"&gt;Controller to Cisco Prime Infrastructure: TCP port 20828 is used for Cisco IOS-XE 16.10.x and 16.11.x, and TCP port 20830 is used for Cisco IOS-XE 16.12x, 17.1.x and later releases.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Mon, 26 Dec 2022 10:10:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745285#M249819</guid>
      <dc:creator>balaji.bandi</dc:creator>
      <dc:date>2022-12-26T10:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745299#M249821</link>
      <description>&lt;P&gt;There is a firewall in production, no interesting ports blocked.&lt;/P&gt;&lt;P&gt;In the lab I have them in the same network/VLAN and no firewall. Production Prime and WLC aren't in the same network.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 11:35:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745299#M249821</guid>
      <dc:creator>Ethan Grinnell</dc:creator>
      <dc:date>2022-12-26T11:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745311#M249826</link>
      <description>&lt;P&gt;that just a suggestion, not necessary to be that is a problem. since you mentioned it was working before the upgrade and having errors after the upgrade. this required some TAC involvement.&lt;/P&gt;
&lt;P&gt;Personally, since you went to the latest version of Code - cisco moving towards DNAC deployment - rather focusing on Prime Infra. (just thinking some features may fading - may be ?)&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 12:21:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745311#M249826</guid>
      <dc:creator>balaji.bandi</dc:creator>
      <dc:date>2022-12-26T12:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745420#M249834</link>
      <description>&lt;P&gt;Prime 3.10.3 is out. Not sure if this will be resolved, but it might be worth checking out if only for the long list of other bugs resolved.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 03:11:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745420#M249834</guid>
      <dc:creator>eglinsky2012</dc:creator>
      <dc:date>2022-12-27T03:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745426#M249835</link>
      <description>&lt;P&gt;Thanks, I'll give that a shot. Not sure how I missed that it came out last Thursday. I guess I need to confirm my notification settings.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 03:49:06 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745426#M249835</guid>
      <dc:creator>Ethan Grinnell</dc:creator>
      <dc:date>2022-12-27T03:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745438#M249836</link>
      <description>&lt;P&gt;No change. Oh well, it was worth doing anyway.&lt;/P&gt;&lt;P&gt;I opened a TAC case earlier this afternoon&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 06:15:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745438#M249836</guid>
      <dc:creator>Ethan Grinnell</dc:creator>
      <dc:date>2022-12-27T06:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745559#M249845</link>
      <description>&lt;P&gt;Sure new PI released only bug fix, which was reported earlier, but TAC can assist you to fix the issue.&lt;/P&gt;
&lt;P&gt;its worth posting back what TAC suggested for the benefit of wide community members.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 13:11:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4745559#M249845</guid>
      <dc:creator>balaji.bandi</dc:creator>
      <dc:date>2022-12-27T13:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4747093#M249933</link>
      <description>&lt;P&gt;Nice analysis and workaround&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/329142"&gt;@Ethan Grinnell&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make sure TAC open a bug for it to get it fixed.&lt;/P&gt;</description>
      <pubDate>Sat, 31 Dec 2022 00:36:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4747093#M249933</guid>
      <dc:creator>Rich R</dc:creator>
      <dc:date>2022-12-31T00:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4779627#M251965</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/329142"&gt;@Ethan Grinnell&lt;/a&gt;&amp;nbsp;thanks for workaround.&lt;/P&gt;
&lt;P&gt;What did TAC say?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2023 13:57:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4779627#M251965</guid>
      <dc:creator>jvodeb</dc:creator>
      <dc:date>2023-02-21T13:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4781945#M252148</link>
      <description>&lt;P&gt;Still investigating internally&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 10:22:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4781945#M252148</guid>
      <dc:creator>Ethan Grinnell</dc:creator>
      <dc:date>2023-02-24T10:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4798053#M253367</link>
      <description>&lt;P&gt;PI = Prime Infrastructure;&amp;nbsp; 9800 is the Cisco 9800-CL (WLC switch)&lt;/P&gt;
&lt;P&gt;I too have been running into issues with the Coral Services since upgrading to PI 3.10.x.&amp;nbsp; TAC has always just had me stop and restart services to resolve.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 18:06:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4798053#M253367</guid>
      <dc:creator>brian.smith</dc:creator>
      <dc:date>2023-03-20T18:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4851754#M256912</link>
      <description>&lt;P&gt;This will probably be the fix:&lt;/P&gt;&lt;P&gt;&lt;A href="https://bst.cloudapps.cisco.com/bugsearch/bug/CSCwc30033" target="_blank"&gt;https://bst.cloudapps.cisco.com/bugsearch/bug/CSCwc30033&lt;/A&gt;&lt;/P&gt;&lt;P&gt;TAC says: "There is not workaround (as of now), however, it will be fixed in 3.10.4. ETA for that version has been changing, it is expected to be released late June, early July"&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 07:06:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4851754#M256912</guid>
      <dc:creator>Ethan Grinnell</dc:creator>
      <dc:date>2023-06-09T07:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4871998#M258041</link>
      <description>&lt;P&gt;3.10.4 was released last week. I confirmed that it fixes the issue. They changed to the new VRF aware syntax:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;show telemetry internal protocol cntp-tcp manager PrimeInfrastructure_IP 20830 source-vrf 0 WLC_MGMT_IP&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Jul 2023 21:11:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/4871998#M258041</guid>
      <dc:creator>Ethan Grinnell</dc:creator>
      <dc:date>2023-07-11T21:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/5127266#M272443</link>
      <description>&lt;P&gt;I am running into the same issue. Looks like the bug CSCwc30033 is qualifying. I have updated prime to 3.10.4 on patch update 3 which is the latest release.&lt;/P&gt;
&lt;P&gt;Currently have a TAC case open but wanted to replay to see if anyone has found a workaround.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 18:25:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/5127266#M272443</guid>
      <dc:creator>spolito</dc:creator>
      <dc:date>2024-06-07T18:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/5127275#M272445</link>
      <description>&lt;P&gt;Ive updated Prime on 3.10.4 on update 3. The 9800 WLC is on 17.19.4 and im still running into this issue. Looks like I may still be hitting CSCwc30033&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 18:57:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/5127275#M272445</guid>
      <dc:creator>spolito</dc:creator>
      <dc:date>2024-06-07T18:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/5127359#M272450</link>
      <description>&lt;P&gt;Well that's strange, 3.10.4 fixed my issue. I'm also fully patched and not seeing a problem. Since they changed the syntax of the command they're using to "VRF aware", is there any chance you are using VRF on the 9800?&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jun 2024 02:15:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/5127359#M272450</guid>
      <dc:creator>Ethan Grinnell</dc:creator>
      <dc:date>2024-06-08T02:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Prime 3.10.2 Coral to 9800 WLC version 17.8/9/10.x reports down</title>
      <link>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/5166499#M274937</link>
      <description>&lt;P&gt;Our 9800-L-F is 17.12.2 and Prime Infrastructure is 3.10.5 and we are still seeing the Coral error.&amp;nbsp; Since it appears that it is cosmetic, not going to worry about it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 12:53:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/prime-3-10-2-coral-to-9800-wlc-version-17-8-9-10-x-reports-down/m-p/5166499#M274937</guid>
      <dc:creator>perrymcgrew</dc:creator>
      <dc:date>2024-08-27T12:53:52Z</dc:date>
    </item>
  </channel>
</rss>

