diff options
| author | Arnoud Vermeer <a.vermeer@tech.leaseweb.com> | 2016-03-24 14:35:31 +0100 | 
|---|---|---|
| committer | Arnoud Vermeer <a.vermeer@tech.leaseweb.com> | 2016-03-24 14:35:31 +0100 | 
| commit | af05dd3b0b73f07747c17efcae73fe980fe08669 (patch) | |
| tree | 18fc5c6600dfe5169f1ce26ecdcc4d1432508a0b /lib/oxidized/model | |
| parent | e8a22f7f849b39f77d056bf6707a91b30b3daa3d (diff) | |
Add supermicro support tested on a SuperMicro SSE-G2252
Diffstat (limited to 'lib/oxidized/model')
| -rw-r--r-- | lib/oxidized/model/supermicro.rb | 48 | 
1 files changed, 48 insertions, 0 deletions
| diff --git a/lib/oxidized/model/supermicro.rb b/lib/oxidized/model/supermicro.rb new file mode 100644 index 0000000..3401593 --- /dev/null +++ b/lib/oxidized/model/supermicro.rb @@ -0,0 +1,48 @@ +class Supermicro < Oxidized::Model +  comment  '! ' + +  # example how to handle pager +  # --- [Space] Next page, [Enter] Next line, [A] All, Others to exit --- +  expect /^---(.*)exit ---$/ do |data, re| +    send 'a' +    data.sub re, '' +  end + +  cmd :secret do |cfg| +    cfg.gsub!(/password \d+ (\S+).*/, '<secret removed>') +    cfg.gsub!(/community (\S+)/, 'community <hidden>') +    cfg +  end + +  cmd :all do |cfg| +     cfg.each_line.to_a[1..-2].join +  end + +  cmd 'show running-config' + +  cmd 'show access-list tcam-utilization' do |cfg| +    comment cfg +  end + +  cmd 'show memory' do |cfg| +    comment cfg +  end + +  cmd 'show version' do |cfg| +    comment cfg +  end + +  cmd 'show watchdog' do |cfg| +    comment cfg +  end + +  cfg :telnet do +    username /^Username:/ +    password /^Password:/ +  end + +  cfg :telnet, :ssh do +    pre_logout 'exit' +  end + +end
\ No newline at end of file | 
