diff options
Diffstat (limited to 'lib/oxidized/model')
| -rw-r--r-- | lib/oxidized/model/ironware.rb | 19 | ||||
| -rw-r--r-- | lib/oxidized/model/panos.rb | 26 | ||||
| -rw-r--r-- | lib/oxidized/model/screenos.rb | 2 | 
3 files changed, 45 insertions, 2 deletions
| diff --git a/lib/oxidized/model/ironware.rb b/lib/oxidized/model/ironware.rb index e18902b..83af5a1 100644 --- a/lib/oxidized/model/ironware.rb +++ b/lib/oxidized/model/ironware.rb @@ -25,13 +25,28 @@ class IronWare < Oxidized::Model    end    cmd 'show version' do |cfg| -    cfg.gsub! /(^((.*)system uptime(.*))$)/, '' #remove unwanted line system uptime +    cfg.gsub! /(^((.*)[Ss]ystem uptime(.*))$)/, '' #remove unwanted line system uptime +    cfg.gsub! /uptime is .*/,'' +      comment cfg    end    cmd 'show chassis' do |cfg| -    cfg.gsub! "\xFF", '' # ugly hack - avoids JSON.dump utf-8 breakage on 1.9.. +    cfg.gsub! /\xFF/n, '' # ugly hack - avoids JSON.dump utf-8 breakage on 1.9..      cfg.gsub! /(^((.*)Current temp(.*))$)/, '' #remove unwanted lines current temperature +    cfg.gsub! /Speed = [A-Z]{3} \(\d{2}\%\)/, '' #remove unwanted lines Speed Fans +    cfg.gsub! /current speed is [A-Z]{3} \(\d{2}\%\)/, '' +    cfg.gsub! /Fan controlled temperature: \d{2}\.\d deg-C/, 'Fan controlled temperature: XX.X d deg-C' +    if cfg.include? "TEMPERATURE" +      sc = StringScanner.new cfg +      out = '' +      temps = '' +      out << sc.scan_until(/.*TEMPERATURE/) +      temps << sc.scan_until(/.*Fans/) +      out << sc.rest +      cfg = out +    end +          comment cfg    end diff --git a/lib/oxidized/model/panos.rb b/lib/oxidized/model/panos.rb new file mode 100644 index 0000000..35624b7 --- /dev/null +++ b/lib/oxidized/model/panos.rb @@ -0,0 +1,26 @@ +class PanOS < Oxidized::Model + +  # PaloAlto PAN-OS model # + +  comment  '! ' + +  prompt /^[\w.\@:\(\)-]+>\s?$/ + +  cmd :all do |cfg| +    cfg.each_line.to_a[2..-3].join +  end + +  cmd 'show system info' do |cfg| +    cfg.gsub! /^(up)?time:\ .*\n/, '' +    comment cfg +  end + +  cmd 'show config running' do |cfg| +    cfg +  end + +  cfg :ssh do +    post_login 'set cli pager off' +    pre_logout 'exit' +  end +end diff --git a/lib/oxidized/model/screenos.rb b/lib/oxidized/model/screenos.rb index c13e64a..7ee9d9f 100644 --- a/lib/oxidized/model/screenos.rb +++ b/lib/oxidized/model/screenos.rb @@ -18,6 +18,8 @@ class ScreenOS  < Oxidized::Model    end    cmd 'get system' do |cfg| +    cfg.gsub! /^Date\ .*\n/, '' +    cfg.gsub! /^Up\ .*\n/, ''      comment cfg    end | 
