<div dir="ltr"><div><div><div><div>That didn't work I'm afraid. I appreciate that it's not a simple fix when, as you say, there isn't one you can test this on so appreciate your effort.<br></div>Running hlogin now results in this:<br><br>MPG_5406_G/F# ^[[42;118R<br><br></div>The console is essentially now dead. I can issue commands such as deleting  ^[[42;118R and entering show config and it does nothing. I'm tempted to just ignore these and go on without them but I know it's always going to be a nagging annoyance that I'll want to fix.<br><br></div>Thanks,<br><br></div>Neil.<br><br><div><div><br><br><br><div><br></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 12 September 2014 14:41, heasley <span dir="ltr"><<a href="mailto:heas@shrubbery.net" target="_blank">heas@shrubbery.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Fri, Sep 12, 2014 at 08:03:23AM -0400, Jon Lewis:<br>
<span class="">> On Fri, 12 Sep 2014, Neil Arnold wrote:<br>
</span><span class="">> > I've got an issue with 3 HP Procurve switches. All are running a recent<br>
> > firmware version. The problem is that no config is being pulled from 3 HP<br>
> > switches. in my network, the others give up their config just fine. I've<br>
> > discovered the reason but I'm unsure of how to fix it.<br>
> > The issue is caused because rancid is issuing the following command to the<br>
> > switch after it logs on: ^[[46;148R<br>
> ><br>
> > I can see this by running /bin/clogin 10.100.20.149 and seeing that I get<br>
> > dropped to the following:<br>
> ><br>
> > HP_SWITCH_1# ^[[46;148R<br>
> > HP_SWITCH_1#<br>
> ><br>
> > So Rancid is issuing the manager username and password and then issuing<br>
> > ^[[46;148R which the switch doesn't understand, Rancid, having not received<br>
><br>
> I have similar problems with clogin and arista gear.  In this case, it's<br>
> solved by clearing the TERM environment variable before running clogin.<br>
<br>
</span>the garbage text is from the switch, screen manipulation codes.  certainly<br>
try hlogin first, but you can also try this patch.  without one of these<br>
to poke, it is hard to figure out the fix.<br>
<br>
Index: bin/<a href="http://hrancid.in" target="_blank">hrancid.in</a><br>
===================================================================<br>
--- bin/<a href="http://hrancid.in" target="_blank">hrancid.in</a>      (revision 2859)<br>
+++ bin/<a href="http://hrancid.in" target="_blank">hrancid.in</a>      (working copy)<br>
@@ -61,6 +61,9 @@<br>
 $found_end = 0;                                # unused - hp lacks an end-of-config tag<br>
 $timeo = 90;                           # hlogin timeout in seconds<br>
<br>
+# force a terminal type to work-around a problem seen with HP2910/J9145A<br>
+$ENV{'TERM'} = "vt100";<br>
+<br>
 my(@commandtable, %commands, @commands);# command lists<br>
 my($aclsort) = ("ipsort");             # ACL sorting mode<br>
 my($filter_commstr);                   # SNMP community string filtering<br>
<br>
</blockquote></div><br></div>