diff options
author | Robert Drake <rfdrake@users.noreply.github.com> | 2017-03-24 22:00:08 -0400 |
---|---|---|
committer | Robert Drake <rfdrake@users.noreply.github.com> | 2017-03-28 15:08:29 -0400 |
commit | ce3461f0801cdb6829637646eecd4c87e2d9a9a8 (patch) | |
tree | 3c3b02fb3b41982cf0e9d2972f9ca95f17b237df /lib | |
parent | 49b4087297a528cfd5e5f1a0c88fccab7695ad8e (diff) |
more "show version" additions
Diffstat (limited to 'lib')
-rw-r--r-- | lib/oxidized/model/ios.rb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/oxidized/model/ios.rb b/lib/oxidized/model/ios.rb index afd419e..0596f90 100644 --- a/lib/oxidized/model/ios.rb +++ b/lib/oxidized/model/ios.rb @@ -50,6 +50,34 @@ class IOS < Oxidized::Model slaveslot = ", slot #{$1}"; end + if line.match /^Compiled (.*)$/ + comments << "Image:#{slave} Compiled: #{$1}" + end + + if line.match /^(?:Cisco )?IOS .* Software,? \(([A-Za-z0-9_-]*)\), .*Version\s+(.*)$/ + comments << "Image:#{slave} Software: #{$1}, #{$2}" + end + + if line.match /^ROM: (IOS \S+ )?(System )?Bootstrap.*(Version.*)$/ + comments << "ROM Bootstrap: #{$3}" + end + + if line.match /^BOOTFLASH: .*(Version.*)$/ + comments << "BOOTFLASH: #{$1}" + end + + if line.match /^(\d+[kK]) bytes of (non-volatile|NVRAM)/ + comments << "Memory: nvram #{$1}" + end + + if line.match /^(\d+[kK]) bytes of (flash memory|flash internal|processor board System flash|ATA CompactFlash)/i + comments << "Memory: flash #{$1}" + end + + if line.match (/^(\d+[kK]) bytes of (Flash|ATA)?.*PCMCIA .*(slot|disk) ?(\d)/i) + comments << "Memory: pcmcia #{$2} #{$3}#{$4} #{$1}"; + end + if line.match /(\S+(?:\sseries)?)\s+(?:\((\S+)\)\s+processor|\(revision[^)]+\)).*\s+with (\S+k) bytes/i sproc = $1 cpu = $2 |