That works. I'm not sure if the same bug is in any other xlogin scripts since I just use cisco.<br>Thanks<br>Aaron<br><br><div><span class="gmail_quote">On 12/6/06, <b class="gmail_sendername">john heasley</b> &lt;<a href="mailto:heas@shrubbery.net">
heas@shrubbery.net</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Wed, Dec 06, 2006 at 04:00:02PM -0500, A Dude:<br>&gt; Is there some reason that I cannot specify both a password and enable when
<br>&gt; using clogin?<br>&gt; My idea is to use a web page to pass the username, password, and enable to<br>&gt; clogin and collect the data from the commands, primarily to automate getting<br>&gt; show tech and show log info.
<br>&gt; Everything works if I remove either the enable or the password option. Is<br>&gt; this the expected behavior?<br>&gt;<br>&gt; [adudek16@redbaron ~]$ clogin -u test -e twctest -p testing -x rantest<br>&gt; <a href="http://10.82.88.11">
10.82.88.11</a><br>&gt; <a href="http://10.82.88.11">10.82.88.11</a><br>&gt; can't read &quot;passwd&quot;: no such variable<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;while executing<br>&gt; &quot;login $router $ruser $userpswd $passwd $enapasswd $cmethod $cyphertype&quot;
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;(&quot;foreach&quot; body line 111)<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;invoked from within<br>&gt; &quot;foreach router [lrange $argv $i end] {<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;set router [string tolower $router]<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;send_user &quot;$router\n&quot;
<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;# Figure out prompt.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;# Since autoena...&quot;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;(file &quot;/usr/sbin/clogin&quot; line 616)<br><br>A bug; please try this patch.<br><br>Index: <a href="http://clogin.in">clogin.in</a>
<br>===================================================================<br>RCS file: /home/rancid/.CVS/rancid/bin/clogin.in,v<br>retrieving revision 1.106<br>diff -d -u -r1.106 <a href="http://clogin.in">clogin.in</a><br>
--- <a href="http://clogin.in">clogin.in</a>&nbsp;&nbsp; 6 Dec 2006 02:12:31 -0000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1.106<br>+++ <a href="http://clogin.in">clogin.in</a>&nbsp;&nbsp; 6 Dec 2006 21:15:30 -0000<br>@@ -754,6 +754,9 @@<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set passwd [join [lindex $pswd 0] &quot;&quot;]
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set enapasswd [join [lindex $pswd 1] &quot;&quot;]<br>+&nbsp;&nbsp;&nbsp;&nbsp;} else {<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set passwd $userpasswd<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set enapasswd $enapasswd<br>&nbsp;&nbsp;&nbsp;&nbsp; }<br><br>&nbsp;&nbsp;&nbsp;&nbsp; # Figure out username<br><br></blockquote></div><br>