We'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 "show version" to detect Cisco Content Engines:</div>
<div><br></div><div> if (/^Application and Content Networking Software/) { $type = "CE"; }</div><div><br></div><div><div>but our presumably more recent ACNS version (5.5.1x) returns the following, with an extra word "System" breaking the string matching:</div>
</div><div><br></div><div><div>[rancid@RANCID configs]$ clogin -c "show ver" 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 = "CE"; }</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>