diff options
author | Rémi Verchère <remi@verchere.fr> | 2017-10-17 12:27:44 +0200 |
---|---|---|
committer | Rémi Verchère <remi@verchere.fr> | 2017-10-17 12:27:44 +0200 |
commit | a302b12af7edb5960c9812a51fec529c132ac401 (patch) | |
tree | 5f2a6fd0123152880ded27f83c5539826bf43d89 | |
parent | 457dfe0cad98b23b51c0a1079d7b8aa67d1c4df6 (diff) |
Handle Dell N2000 switches (dnos6)
-rw-r--r-- | lib/oxidized/model/dnos.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/oxidized/model/dnos.rb b/lib/oxidized/model/dnos.rb index a44630e..5c3cd53 100644 --- a/lib/oxidized/model/dnos.rb +++ b/lib/oxidized/model/dnos.rb @@ -5,6 +5,7 @@ class DNOS < Oxidized::Model comment '! ' cmd :all do |cfg| + cfg.gsub! /^% Invalid input detected at '\^' marker\.$|^\s+\^$/, '' cfg.each_line.to_a[2..-2].join end @@ -22,6 +23,14 @@ class DNOS < Oxidized::Model comment cfg end + cmd 'show version' do |cfg| + comment cfg + end + + cmd 'show system' do |cfg| + comment cfg + end + cmd 'show running-config' do |cfg| cfg = cfg.each_line.to_a[3..-1].join cfg |