summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/siklu.rb
blob: 2b0c95a285f76e0b65588a4f22f2aacf70ed28c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Siklu < Oxidized::Model

  # Siklu EtherHaul #

  comment '# '

  prompt /^[\w-]+>$/

  cmd 'copy startup-configuration display' do |cfg|
    cfg.each_line.to_a[2..2].join
  end

  cmd 'copy running-configuration display' do |cfg|
    cfg.each_line.to_a[3..-2].join
  end

  cfg :ssh do
    pre_logout 'exit'
  end

end