We&#39;ve had to make a small change to RANCID for it to run with our Cisco WAEs running ACNS software.<div><br></div><div>/bin/rancid uses the following string matching in &quot;show version&quot; to detect Cisco Content Engines:</div>

<div><br></div><div>    if (/^Application and Content Networking Software/) { $type = &quot;CE&quot;; }</div><div><br></div><div><div>but our presumably more recent ACNS version (5.5.1x) returns the following, with an extra word &quot;System&quot; breaking the string matching:</div>

</div><div><br></div><div><div>[rancid@RANCID configs]$ clogin -c &quot;show ver&quot; acns | grep -i acns</div><div>Application and Content Networking System Software (ACNS)</div><div><br></div></div><div>We patched the string matching to the following, and it all works well.</div>

<div><br></div><div><div>    if (/^Application and Content Networking.*Software/) { $type = &quot;CE&quot;; }</div></div><div><br></div><div>Wondering if the maintainers can commit this (or whatever is similar/more appropriate). Thanks!</div>

<div><br></div><div><br></div><div>-- </div><div>Hock Jim HO</div><div><br></div><div>ps. Thanks for an Really Awesome program.</div>