diff --git a/CHANGELOG.md b/CHANGELOG.md index 8891d3911..0e782bf39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ## Added - model for D-Link cisco like CLI (@mirackle-spb) - model for Ruijie Networks RGOS devices (@spike77453) +- added support for AricentISS 2.x firmware (@davromaniak) - model for Asterfusion Network Operating System (@avl-dev) - pagination for http source (@davama) - model for Ericsson Miniling 6600 series (@schouwenburg) diff --git a/lib/oxidized/model/aricentiss.rb b/lib/oxidized/model/aricentiss.rb index a8dfb9cea..bb49855e4 100644 --- a/lib/oxidized/model/aricentiss.rb +++ b/lib/oxidized/model/aricentiss.rb @@ -2,6 +2,10 @@ # #show version # Switch ID Hardware Version Firmware Version # 0 SSE-G48-TG4 (P2-01) 1.0.16-9 +# and +# # show version +# Switch ID Hardware Version Firmware Version +# 0 MBM-XEM-002 (B6-01) 2.1.3-25 class AricentISS < Oxidized::Model using Refinements @@ -13,6 +17,9 @@ class AricentISS < Oxidized::Model # 1.0.18-15 is known to include the corrected spelling post_login 'no cli pagination' post_login 'no cli pagignation' + # Starting firmware 2.0, pagination is done differently. + # This configuration is reset after the session ends. + post_login 'conf t; set cli pagination off; exit' pre_logout 'exit' end