<div dir="ltr">Hi Erick,<br><br>Thanks for the link, I think this will be really useful!<br><br>What does Tony mean by a script server? Is this the router or a server? If it is the router, how would you set a schedule for this job to run?<br>
<br>Thanks for all your help.<br><br>Mark<br><br><br><br><div class="gmail_quote">2008/9/12 Erick Bergquist <span dir="ltr">&lt;<a href="mailto:erickbee@gmail.com">erickbee@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
No problem, I had stumbled across that awhile ago at a old gig when I<br>
dealt with AIM-CUE failures 1-2 times a month (150+ locations). Now,<br>
not as much, but I do recall reading some posting somewhere where they<br>
had CUE automated backup on a roadmap for a future version, this was<br>
like 6-9 months ago.<br>
<div><div></div><div class="Wj3C7c"><br>
On Thu, Sep 11, 2008 at 9:28 PM, Ryan West &lt;<a href="mailto:rwest@zyedge.com">rwest@zyedge.com</a>&gt; wrote:<br>
&gt; Erick,<br>
&gt;<br>
&gt; Thanks for the link. &nbsp;Not sure why Cisco wouldn&#39;t want to post TCL/Expect scripts to add with a product that badly needs a built-in automatic backup function. &nbsp;I figured this was the only alternative. &nbsp;Thanks for the link.<br>

&gt;<br>
&gt; -ryan<br>
&gt;<br>
&gt; -----Original Message-----<br>
&gt; From: Erick Bergquist [mailto:<a href="mailto:erickbee@gmail.com">erickbee@gmail.com</a>]<br>
&gt; Sent: Wednesday, September 10, 2008 1:05 AM<br>
&gt; To: Joe Cisco<br>
&gt; Cc: Ryan West; <a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a><br>
&gt; Subject: Re: [cisco-voip] howto: automatically backup cme config<br>
&gt;<br>
&gt; I haven&#39;t tried this, but...<br>
&gt;<br>
&gt; <a href="http://forum.cisco.com/eforum/servlet/NetProf?page=netprof&amp;forum=Expert%20Archive&amp;topic=Voice%20and%20Video&amp;topicID=.ee7f996&amp;CommCmd=MB%3Fcmd%3Dpass_through%26location%3Doutline%40" target="_blank">http://forum.cisco.com/eforum/servlet/NetProf?page=netprof&amp;forum=Expert%20Archive&amp;topic=Voice%20and%20Video&amp;topicID=.ee7f996&amp;CommCmd=MB%3Fcmd%3Dpass_through%26location%3Doutline%40</a>^1%40%40.1dde3c2a/45#selected_message<br>

&gt;<br>
&gt;<br>
&gt; On Tue, Sep 9, 2008 at 3:27 PM, Joe Cisco &lt;<a href="mailto:smetsysocsic@gmail.com">smetsysocsic@gmail.com</a>&gt; wrote:<br>
&gt;&gt; No problem on the hijack. When we install a new system we usually have<br>
&gt;&gt; the administrator use the CUE GUI, which obviously must be kicked off<br>
&gt;&gt; manually. However, it would be nice to be able to auto script it<br>
&gt;&gt; somehow.<br>
&gt;&gt;<br>
&gt;&gt; -Joe C.<br>
&gt;&gt;<br>
&gt;&gt; On Tue, Sep 9, 2008 at 3:10 PM, Ryan West &lt;<a href="mailto:rwest@zyedge.com">rwest@zyedge.com</a>&gt; wrote:<br>
&gt;&gt;&gt; Not to highjack your post here, but has anyone figured out a way to auto backup the CUE config?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; -ryan<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; -----Original Message-----<br>
&gt;&gt;&gt; From: <a href="mailto:cisco-voip-bounces@puck.nether.net">cisco-voip-bounces@puck.nether.net</a> [mailto:<a href="mailto:cisco-voip-bounces@puck.nether.net">cisco-voip-bounces@puck.nether.net</a>] On Behalf Of Joe Cisco<br>

&gt;&gt;&gt; Sent: Tuesday, September 09, 2008 4:05 PM<br>
&gt;&gt;&gt; To: <a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a><br>
&gt;&gt;&gt; Subject: [cisco-voip] howto: automatically backup cme config<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I assume a large percentage of you may have already known this, but I<br>
&gt;&gt;&gt; hadn&#39;t seen it and thought i&#39;d post it. This a cheap/easy way to<br>
&gt;&gt;&gt; automatically back up a CME (or any IOS device for that matter) if you<br>
&gt;&gt;&gt; have an available FTP server. I think they started supporting this<br>
&gt;&gt;&gt; somewhere in the 12.3 range of code.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; ! *** the following config will automatically back up the config<br>
&gt;&gt;&gt; ! *** of the device to the folder of the ftp server listed in the<br>
&gt;&gt;&gt; ! *** PATH statement every 10080 minutes (7 days). It will<br>
&gt;&gt;&gt; ! *** also copy the config every time a &quot;write mem&quot; or &quot;copy<br>
&gt;&gt;&gt; ! *** run start&quot; is issued.<br>
&gt;&gt;&gt; !<br>
&gt;&gt;&gt; !<br>
&gt;&gt;&gt; ! *** set ftp server username<br>
&gt;&gt;&gt; ip ftp username admin<br>
&gt;&gt;&gt; ! *** set ftp server password<br>
&gt;&gt;&gt; ip ftp password ftp-server-password-goes-here<br>
&gt;&gt;&gt; !<br>
&gt;&gt;&gt; !<br>
&gt;&gt;&gt; !<br>
&gt;&gt;&gt; archive<br>
&gt;&gt;&gt; &nbsp;path <a href="ftp://10.0.0.10/ucme-configs/router-hostname-here" target="_blank">ftp://10.0.0.10/ucme-configs/router-hostname-here</a><br>
&gt;&gt;&gt; &nbsp;log config<br>
&gt;&gt;&gt; &nbsp;write-memory<br>
&gt;&gt;&gt; &nbsp;time-period 10080<br>
&gt;&gt;&gt; !<br>
&gt;&gt;&gt; !<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Later,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Joe C.<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; cisco-voip mailing list<br>
&gt;&gt;&gt; <a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a><br>
&gt;&gt;&gt; <a href="https://puck.nether.net/mailman/listinfo/cisco-voip" target="_blank">https://puck.nether.net/mailman/listinfo/cisco-voip</a><br>
&gt;&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; cisco-voip mailing list<br>
&gt;&gt; <a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a><br>
&gt;&gt; <a href="https://puck.nether.net/mailman/listinfo/cisco-voip" target="_blank">https://puck.nether.net/mailman/listinfo/cisco-voip</a><br>
&gt;&gt;<br>
&gt;<br>
_______________________________________________<br>
cisco-voip mailing list<br>
<a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a><br>
<a href="https://puck.nether.net/mailman/listinfo/cisco-voip" target="_blank">https://puck.nether.net/mailman/listinfo/cisco-voip</a><br>
</div></div></blockquote></div><br></div>