diff options
| author | Dave <davama@gmail.com> | 2017-02-10 16:22:13 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-10 16:22:13 -0500 | 
| commit | 81619a27e0e63d8070d053ad7b476b85a6fb5b41 (patch) | |
| tree | 6c34d38966a5a10c2584c5e7bc85002ad269d7f5 | |
| parent | e6e72296d7e22eaa6fe20fd0b2007d3b58a078a2 (diff) | |
nxos.rb: Add secret block
Took config from our local setup.
Adding since it does not have it
| -rw-r--r-- | lib/oxidized/model/nxos.rb | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/lib/oxidized/model/nxos.rb b/lib/oxidized/model/nxos.rb index fbe772d..e743415 100644 --- a/lib/oxidized/model/nxos.rb +++ b/lib/oxidized/model/nxos.rb @@ -3,6 +3,14 @@ class NXOS < Oxidized::Model    prompt /^(\r?[\w.@_()-]+[#]\s?)$/    comment '! ' +  cmd :secret do |cfg| +    cfg.gsub! /^(snmp-server community).*/, '\\1 <configuration removed>' +    cfg.gsub! /^(snmp-server user (\S+) (\S+) auth (\S+)) (\S+) (priv) (\S+)/, '\\1 <configuration removed> ' +    cfg.gsub! /^(username \S+ password \d) (\S+)/, '\\1 <secret hidden>' +    cfg.gsub! /^(radius-server key).*/, '\\1 <secret hidden>' +    cfg +  end +      cmd 'show version' do |cfg|      cfg = cfg.each_line.take_while { |line| not line.match(/uptime/i) }      comment cfg.join "" | 
