diff options
author | Danilo Sousa <danilopopeye@users.noreply.github.com> | 2017-08-22 11:28:05 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-22 11:28:05 -0300 |
commit | 64e4567630c8eb209df5bd1f3573903a441c06a7 (patch) | |
tree | b39b3add61c56494bcf679a2ce1328bcc2382b08 /lib/oxidized/model/ciscosmb.rb | |
parent | 01dc4cff03a6634a390351b2a0199dcfc2c7c11b (diff) | |
parent | 693ec1173ae92fa959d058ed152ad693d28b6417 (diff) |
Merge pull request #935 from davama/master
Add show command
Diffstat (limited to 'lib/oxidized/model/ciscosmb.rb')
-rw-r--r-- | lib/oxidized/model/ciscosmb.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/oxidized/model/ciscosmb.rb b/lib/oxidized/model/ciscosmb.rb index e5501d5..5ddcfcb 100644 --- a/lib/oxidized/model/ciscosmb.rb +++ b/lib/oxidized/model/ciscosmb.rb @@ -16,12 +16,17 @@ class CiscoSMB < Oxidized::Model cmd :secret do |cfg| cfg.gsub! /^(snmp-server community).*/, '\\1 <configuration removed>' cfg.gsub! /username (\S+) privilege (\d+) (\S+).*/, '<secret hidden>' + cfg.gsub! /^(encrypted radius-server key).*/, '\\1 <configuration removed>' cfg end cmd 'show version' do |cfg| comment cfg end + + cmd 'show bootvar' do |cfg| + comment cfg + end cmd 'show running-config' do |cfg| cfg = cfg.each_line.to_a[0..-1].join |