summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/axos.rb
blob: 5ce2b68a425def9c3fe67d2ce6d72fd023fae412 (plain)
1
2
3
4
5
6
7
8
9
10
11
class AXOS < Oxidized::Model
  prompt /([\w.@()-]+[#]\s?)$/
  comment '! '
  cmd 'show running-config | nomore' do |cfg|
    cfg
  end

  cfg :ssh do
    pre_logout 'exit'
  end
end