Skip to content

Commit

Permalink
more "show version" additions
Browse files Browse the repository at this point in the history
  • Loading branch information
rfdrake committed Mar 28, 2017
1 parent 49b4087 commit ce3461f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions lib/oxidized/model/ios.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ce3461f

Please sign in to comment.