Sha256: 0ac9aa62f2a127ee578f533eaca13d35e96bd6169c7c89f82545f29b1a489deb
Contents?: true
Size: 1.22 KB
Versions: 3
Compression:
Stored size: 1.22 KB
Contents
class Hatteras < Oxidized::Model # Hatteras Networks prompt /^(\r?[\w.@()-]+[#>]\s?)$/ comment '# ' expect /WARNING: System configuration changes will be lost when the device restarts./ do |data, re| send "y\r" data.sub re, '' end cmd :secret do |cfg| cfg.gsub! /^(community) \S+/, '\\1 "<configuration removed>"' cfg.gsub! /^(communityString) "\S+"/, '\\1 "<configuration removed>"' cfg.gsub! /^(key) "\S+"/, '\\1 "<secret hidden>"' cfg end cmd :all do |cfg| cfg.each_line.to_a[1..-2].join end cmd "show switch\r" do |cfg| cfg = cfg.each_line.reject { |line| line.match /Switch uptime|Switch temperature|Last reset reason/ or line.match /TermCpuUtil|^\s+\^$|ERROR: Bad command/ } .join comment cfg end cmd "show card\r" do |cfg| cfg = cfg.each_line.reject { |line| line.match /Card uptime|Card temperature|Last reset reason/ or line.match /TermCpuUtil|^\s+\^$|ERROR: Bad command/ } .join comment cfg end cmd "show sfp *\r" do |cfg| comment cfg end cmd "show config run\r" do |cfg| cfg end cfg :telnet do username /^Login:/ password /^Password:/ end cfg :telnet, :ssh do pre_logout "logout\r" end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
oxidized-0.24.0 | lib/oxidized/model/hatteras.rb |
oxidized-0.23.0 | lib/oxidized/model/hatteras.rb |
oxidized-0.22.0 | lib/oxidized/model/hatteras.rb |