Sha256: 4f6e551bf6da858f3366fe182dfd1e3b580be99f07e19e505077480fee4c2234

Contents?: true

Size: 830 Bytes

Versions: 9

Compression:

Stored size: 830 Bytes

Contents

# 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 :all do |cfg|
    cfg.cut_head
  end

  cmd 'show version' do |cfg|
    cfg.gsub! /\s(Uptime is).*/, ''
    comment cfg
  end

  cmd 'show boot-files' do |cfg|
    comment cfg
  end

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

  cmd 'show running-config' do |cfg|
    cfg
  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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
oxidized-0.29.0 lib/oxidized/model/dcnos.rb
oxidized-0.28.0 lib/oxidized/model/dcnos.rb
oxidized-0.27.0 lib/oxidized/model/dcnos.rb
oxidized-0.26.3 lib/oxidized/model/dcnos.rb
oxidized-0.26.2 lib/oxidized/model/dcnos.rb
oxidized-0.26.1 lib/oxidized/model/dcnos.rb
oxidized-0.26.0 lib/oxidized/model/dcnos.rb
oxidized-0.25.1 lib/oxidized/model/dcnos.rb
oxidized-0.25.0 lib/oxidized/model/dcnos.rb