summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/panos.rb
blob: 35624b7e25f05e24e939b8078f6166a9709d900e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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