<?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: XMC TCL scripting, how to wait xx minutes  between CLI commands? in ExtremeCloud IQ- Site Engine Management Center</title>
    <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46312#M6379</link>
    <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
maybe Kurt has access?&lt;BR /&gt;
&lt;BR /&gt;
Or you can open a case with reference to this GTAC article.&lt;BR /&gt;
&lt;BR /&gt;
Best regards&lt;BR /&gt;
Stephan&lt;BR /&gt;</description>
    <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
    <dc:creator>StephanH</dc:creator>
    <dc:date>2018-10-05T16:07:00Z</dc:date>
    <item>
      <title>XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46296#M6363</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
As our Palo Alto firewall device has no scheduled update feature, I want to use XMC scripting for this purpose.&lt;BR /&gt;
&lt;BR /&gt;
# request system software install version&lt;BR /&gt;
# request restart system&lt;BR /&gt;
&lt;BR /&gt;
These are the commands. So how can I tell XMC TCL engine to wait 30 minutes between these two commands?&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Rahman</description>
      <pubDate>Wed, 03 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46296#M6363</guid>
      <dc:creator>Rahman_Duran</dc:creator>
      <dc:date>2018-10-03T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46297#M6364</link>
      <description>Hello Rahman,&lt;BR /&gt;
&lt;BR /&gt;
never used but there is a special "&lt;B&gt;sleep&lt;/B&gt;" command in XMC.&lt;BR /&gt;
Open your onlinehelp of XMC and search for "&lt;B&gt;How to create scrips&lt;/B&gt;" for more details.&lt;BR /&gt;
On this page look for "sleep"&lt;BR /&gt;
&lt;BR /&gt;
Have fun.&lt;BR /&gt;
&lt;BR /&gt;
Best regards&lt;BR /&gt;
Stephan&lt;BR /&gt;</description>
      <pubDate>Wed, 03 Oct 2018 18:06:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46297#M6364</guid>
      <dc:creator>StephanH</dc:creator>
      <dc:date>2018-10-03T18:06:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46298#M6365</link>
      <description>Hello Rahman,&lt;BR /&gt;
if the "sleep" command isn't working within an TCL script you can use the following TLC build in command:&lt;BR /&gt;
&lt;BR /&gt;
after &lt;MS&gt; &lt;DO something=""&gt;&lt;BR /&gt;
when &lt;MS&gt; is the time your program waits in milliseconds.&lt;BR /&gt;
&lt;BR /&gt;
Best regards&lt;BR /&gt;
Stephan&lt;/MS&gt;&lt;/DO&gt;&lt;/MS&gt;</description>
      <pubDate>Wed, 03 Oct 2018 18:06:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46298#M6365</guid>
      <dc:creator>StephanH</dc:creator>
      <dc:date>2018-10-03T18:06:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46299#M6366</link>
      <description>Hello Stephan,&lt;BR /&gt;
&lt;BR /&gt;
Yes, I tried and "sleep xxx" works. But my script is not working.&lt;BR /&gt;
&lt;BR /&gt;
#@MetaDataStart&lt;BR /&gt;
#############################################################################################&lt;BR /&gt;
# Define your user parameters in this section. For reference, see bundled scripts.&lt;BR /&gt;
#############################################################################################&lt;BR /&gt;
&lt;BR /&gt;
#&lt;B&gt;@VariableFieldLabel&lt;/B&gt; "Version"&lt;BR /&gt;
set var version 8.x.x&lt;BR /&gt;
#@MetaDataEnd&lt;BR /&gt;
&lt;BR /&gt;
# Enter all CLI commands from here&lt;BR /&gt;
CLI request system software install version $version&lt;BR /&gt;
CLI y&lt;BR /&gt;
sleep 45&lt;BR /&gt;
CLI show system info&lt;BR /&gt;
&lt;BR /&gt;
Here is what I get when I run the script:&lt;BR /&gt;
&lt;BR /&gt;
EMC User: rduran&lt;BR /&gt;
EMC User Domain: artvin.edu.tr&lt;BR /&gt;
CLI Login: admin&lt;BR /&gt;
ACU-PA-3050-1    10.100.2.100    10/05/2018 01:43:04 PM at 01:43:04 PM&lt;BR /&gt;
Error: session exceeded timeout: 30 secs&lt;BR /&gt;
Error: session exceeded timeout: 30 secs&lt;BR /&gt;
ACU-PA-3050-1 #sleep 45&lt;BR /&gt;
Error: session exceeded timeout: 30 secs&lt;BR /&gt;
&lt;BR /&gt;
If I don't use "CLI" keyword I get this error:&lt;BR /&gt;
&lt;BR /&gt;
javax.script.ScriptException: &lt;BR /&gt;
*** Script Error ***&lt;BR /&gt;
nul&lt;BR /&gt;
&lt;BR /&gt;
So how can I run those to commands against PANOS ssh CLI?&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
&lt;BR /&gt;
Rahman ﻿</description>
      <pubDate>Wed, 03 Oct 2018 18:06:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46299#M6366</guid>
      <dc:creator>Rahman_Duran</dc:creator>
      <dc:date>2018-10-03T18:06:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46300#M6367</link>
      <description>The error "session exceeded timeout: 30 secs" might indicate that the script engine expects some "regular" activity on your SSH session. So if you sleep for 45 seconds, there is no activity and the engine thinks that something is wrong and breaks processing (my interpretation  ). &lt;BR /&gt;
&lt;BR /&gt;
One idea: try to leep for 20 seconds, execute some CLI command (show system info), sleep another 25 seconds and then continue with your commands.</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46300#M6367</guid>
      <dc:creator>Kurt_Semba</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46301#M6368</link>
      <description>But the first command of the script is "CLI request system software install version $version" and it is not run. For testing I deleted the "sleep" line and the result is same:&lt;BR /&gt;
&lt;BR /&gt;
EMC User: rduran&lt;BR /&gt;
EMC User Domain: artvin.edu.tr&lt;BR /&gt;
CLI Login: admin&lt;BR /&gt;
ACU-PA-3050-1    10.100.2.100    10/05/2018 02:11:20 PM at 02:11:20 PM&lt;BR /&gt;
Error: session exceeded timeout: 30 secs&lt;BR /&gt;
Error: session exceeded timeout: 30 secs&lt;BR /&gt;
Error: session exceeded timeout: 30 secs&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Rahman</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46301#M6368</guid>
      <dc:creator>Rahman_Duran</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46302#M6369</link>
      <description>How long does it take to execute this command when you try to do it manually? Longer than 30 seconds?</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46302#M6369</guid>
      <dc:creator>Kurt_Semba</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46303#M6370</link>
      <description>No it runs instantly. First command ask for "Yes/No". After I press "y" it just prints the PANOS job id and returns to console immediately.</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46303#M6370</guid>
      <dc:creator>Rahman_Duran</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46304#M6371</link>
      <description>Hello Rahman,&lt;BR /&gt;
&lt;BR /&gt;
is this timer long enough?&lt;BR /&gt;
&lt;BR /&gt;
&lt;P class="fancybox-image"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="cc4c3d1330454f11b7abc6254637f434_RackMultipart20181005-104303-70o4l7-image_inline.png"&gt;&lt;img src="https://community.extremenetworks.com/t5/image/serverpage/image-id/2967iB839E7DE5F87526E/image-size/large?v=v2&amp;amp;px=999" role="button" title="cc4c3d1330454f11b7abc6254637f434_RackMultipart20181005-104303-70o4l7-image_inline.png" alt="cc4c3d1330454f11b7abc6254637f434_RackMultipart20181005-104303-70o4l7-image_inline.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46304#M6371</guid>
      <dc:creator>StephanH</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46305#M6372</link>
      <description>maybe the script executes the required "y" too fast? can you have it sleep 3 seconds between your two CLI commands (just before you execute CLI y)... just a wild guess..</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46305#M6372</guid>
      <dc:creator>Kurt_Semba</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46306#M6373</link>
      <description>&lt;B&gt;@SH&lt;/B&gt;, yes I set it 3600 secs.</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46306#M6373</guid>
      <dc:creator>Rahman_Duran</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46307#M6374</link>
      <description>Kurt, I will try what you suggest but, shouldn't I see the all CLI output, "Yes/no" question?</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46307#M6374</guid>
      <dc:creator>Rahman_Duran</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46308#M6375</link>
      <description>My idea was to try something like this:&lt;BR /&gt;
&lt;BR /&gt;
CLI request system software install version $version&lt;BR /&gt;
sleep 3&lt;BR /&gt;
&lt;BR /&gt;
CLI y&lt;BR /&gt;
sleep 45&lt;BR /&gt;
&lt;BR /&gt;
CLI show system info&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46308#M6375</guid>
      <dc:creator>Kurt_Semba</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46309#M6376</link>
      <description>No luck:&lt;BR /&gt;
&lt;BR /&gt;
EMC User: rduran&lt;BR /&gt;
EMC User Domain: artvin.edu.tr&lt;BR /&gt;
CLI Login: admin&lt;BR /&gt;
ACU-PA-3050-1    10.100.2.100    10/05/2018 02:43:22 PM at 02:43:22 PM&lt;BR /&gt;
Error: session exceeded timeout: 30 secs&lt;BR /&gt;
ACU-PA-3050-1 #sleep 10&lt;BR /&gt;
Error: session exceeded timeout: 30 secs&lt;BR /&gt;
Error: session exceeded timeout: 30 secs&lt;BR /&gt;
&lt;BR /&gt;
What I mean is, after XMC scripting engine login to device, will it show all command outputs in "Results" section of "XMC script run" page? Because when I login via putty, I see two information lines:&lt;BR /&gt;
&lt;BR /&gt;
Using username "admin".&lt;BR /&gt;
Using keyboard-interactive authentication.&lt;BR /&gt;
Password:&lt;BR /&gt;
Last login: Fri Oct  5 14:43:24 2018 from 192.168.10.199&lt;BR /&gt;
&lt;BR /&gt;
Number of failed attempts since last successful login: 0&lt;BR /&gt;
&lt;BR /&gt;
admin@ACU-PA-3050-1&amp;gt;&lt;BR /&gt;
&lt;BR /&gt;
But I don't see this in "results" section of XMC.</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46309#M6376</guid>
      <dc:creator>Rahman_Duran</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46310#M6377</link>
      <description>Hello Rahman,&lt;BR /&gt;
&lt;BR /&gt;
have a look to these article:&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="https://gtacknowledge.extremenetworks.com/articles/Solution/Running-an-XMC-Script-on-8-1-4-40-takes-long-time-and-generates-timeout-errors" target="_blank" rel="nofollow noreferrer noopener"&gt;https://gtacknowledge.extremenetworks.com/articles/Solution/Running-an-XMC-Script-on-8-1-4-40-takes-...&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Look's like your error message.&lt;BR /&gt;
&lt;BR /&gt;
Best regards&lt;BR /&gt;
Stephan&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46310#M6377</guid>
      <dc:creator>StephanH</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46311#M6378</link>
      <description>Hello Stephan,&lt;BR /&gt;
&lt;BR /&gt;
It seems the link in GTAC KB is protected. I can not download it.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
&lt;BR /&gt;
Rahman</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46311#M6378</guid>
      <dc:creator>Rahman_Duran</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46312#M6379</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
maybe Kurt has access?&lt;BR /&gt;
&lt;BR /&gt;
Or you can open a case with reference to this GTAC article.&lt;BR /&gt;
&lt;BR /&gt;
Best regards&lt;BR /&gt;
Stephan&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46312#M6379</guid>
      <dc:creator>StephanH</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46313#M6380</link>
      <description>I also don't have access - I just applied to get access - once I got it, I will provide you with the file. Can you send me an email: kurt [dot] semba [@] extremenetworks  [dot] com&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46313#M6380</guid>
      <dc:creator>Kurt_Semba</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46314#M6381</link>
      <description>Hello Rahman,&lt;BR /&gt;
&lt;BR /&gt;
did the KB article help?&lt;BR /&gt;
&lt;BR /&gt;
Best regards&lt;BR /&gt;
Stephan&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46314#M6381</guid>
      <dc:creator>StephanH</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC TCL scripting, how to wait xx minutes  between CLI commands?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46315#M6382</link>
      <description>Hello Stephan,  No, I could not access the file on the kb, Kurt also did not provide the file yet.  Regards, Rahman</description>
      <pubDate>Fri, 05 Oct 2018 16:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-tcl-scripting-how-to-wait-xx-minutes-between-cli-commands/m-p/46315#M6382</guid>
      <dc:creator>Rahman_Duran</dc:creator>
      <dc:date>2018-10-05T16:07:00Z</dc:date>
    </item>
  </channel>
</rss>

