diff options
author | Wild Kat <wk@futureinquestion.net> | 2018-03-20 23:15:34 +0100 |
---|---|---|
committer | Wild Kat <wk@futureinquestion.net> | 2018-03-20 23:15:34 +0100 |
commit | 6f672654c7e725bc828b6577297b86d501780c50 (patch) | |
tree | cf29588894d0c071f0e6b393671c84b7dd605163 /lib/oxidized/model/aricentiss.rb | |
parent | baee367bfec7ec5241ad7e893de7df8ea7eec1e7 (diff) | |
parent | e7075d18e055613cb0324f0fc8eecfe7adeeac56 (diff) |
refactor snr support into dcnos model
Diffstat (limited to 'lib/oxidized/model/aricentiss.rb')
-rw-r--r-- | lib/oxidized/model/aricentiss.rb | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/lib/oxidized/model/aricentiss.rb b/lib/oxidized/model/aricentiss.rb new file mode 100644 index 0000000..8821801 --- /dev/null +++ b/lib/oxidized/model/aricentiss.rb @@ -0,0 +1,53 @@ +# Developed against: +# #show version +# Switch ID Hardware Version Firmware Version +# 0 SSE-G48-TG4 (P2-01) 1.0.16-9 + +class AricentISS < Oxidized::Model + + prompt (/^(\e\[27m)?[ \r]*\w+# ?$/) + + cfg :ssh do + # "pagination" was misspelled in some (earlier) versions (at least 1.0.16-9) + # 1.0.18-15 is known to include the corrected spelling + post_login 'no cli pagination' + post_login 'no cli pagignation' + pre_logout 'exit' + end + + cmd :all do |cfg| + # * Drop first line that contains the command, and the last line that + # contains a prompt + # * Strip carriage returns + cfg.delete("\r").each_line.to_a[1..-2].join + end + + cmd :secret do |cfg| + cfg.gsub(/^(snmp community) .*/, '\1 <hidden>') + end + + cmd 'show system information' do |cfg| + cfg.sub! /^Device Up Time.*\n/, '' + cfg.delete! "\r" + comment(cfg).gsub(/ +$/, '') + end + + cmd 'show running-config' do |cfg| + comment_next = 0 + cfg.each_line.map { |l| + next '' if l.match /^Building configuration/ + + if l.match /^Switch ID.*Hardware Version.*Firmware Version/ then + comment_next = 2 + end + + if comment_next > 0 then + comment_next -= 1 + next comment(l) + end + + l + }.join.gsub(/ +$/, '') + end + +end |