<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <p><br>
    </p>
    <br>
    <div class="moz-cite-prefix">On 2/20/2018 1:10 PM, heasley wrote:<br>
    </div>
    <blockquote type="cite"
      cite="mid:20180220181001.GB61511@shrubbery.net">
      <pre wrap="">Tue, Feb 20, 2018 at 09:46:21AM +0100, Aleksander Vines:
</pre>
      <blockquote type="cite">
        <pre wrap="">That worked perfectly. Thanks for the fast reply.


For reference, if anyone else have issues with new procurve software, this is what I added:



# This routine parses "show tech transceivers"
sub ShowTechTransceivers {
    ...
    while (<INPUT>) {
        ...
        # These next two lines are new
        next if (/[A-Z][a-z][a-z] [A-Z][a-z][a-z] [0-9]+ [0-2][0-9]:[0-5][0-9]:[0-5][0-9] 20[0-9][0-9]/);
        next if (/show time/);
        next if (/^(\s*|\s*$cmd\s*)$/);
        ...
}


Thanks,
Aleksander Vines

</pre>
      </blockquote>
      <pre wrap="">
Would someone confirm that these filters work:

Index: bin/hrancid.in
===================================================================
--- bin/hrancid.in      (revision 3760)
+++ bin/hrancid.in      (working copy)
@@ -203,6 +203,9 @@
            }
            next;
        }
+       # KB.16.05.0003 5406R firmware bug
+       next if (/^\s*show time\s*$/i);
+       next if (/^\s*\S{3} \S{3}\s+\d+\s+\d+:\d+:\d+\s+\d+\s*$/);
 
        ProcessHistory("COMMENTS","keysort","G0",";$_");
</pre>
    </blockquote>
    My HPs aren't new enough to show the time field.<br>
    But it looks innocuous enough.<br>
    <br>
    <div class="moz-signature">-- <br>
      <table>
        <tbody>
          <tr>
            <td style="padding-left: 20px" width="90%">Doug Hughes<br>
              Keystone NAP<br>
              Fairless Hills, PA<br>
              1.844.KEYBLOCK (539.2562)</td>
            <td style="align: right;padding-right: 20px"><img
                src="cid:part1.A73CD2BC.931D4664@keystonenap.com">
            </td>
          </tr>
        </tbody>
      </table>
    </div>
  </body>
</html>