summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/dcnos.rb
blob: 5a39e2b5f81eca7599f36b3266ec57ab3eeefbe7 (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
27
28
29
30
31
32
33
34
35
# DCNOS is a ZebOS derivative by DCN (http://www.dcnglobal.com/)
# In addition to products by DCN (now Yunke China), this OS type
# powers a number of re-branded OEM devices.

# Developed against SNR S2950-24G 7.0.3.5

class DCNOS < Oxidized::Model

  comment '!'

  cmd 'show version' do |cfg|
    comment cfg
  end

  cmd 'show running-config' do |cfg|
    cfg = cfg.each_line.to_a[1..-1]
  end

  cfg :telnet do
    username /^login:/i
    password /^password:/i
  end

  cfg :telnet, :ssh do
    if vars :enable
      post_login do
        send "enable\n"
        cmd vars(:enable)
      end
    end
    post_login 'terminal length 0'
    pre_logout 'exit'
  end

end