Sha256: 579ee051b9c1df6b583385ab133ff196b8e8ab8aa3717798eec251aee0ed9504
Contents?: true
Size: 862 Bytes
Versions: 9
Compression:
Stored size: 862 Bytes
Contents
# ECI Telecom Apollo # Tested on OPT9608 systems via SSH and telnet class ECIapollo < Oxidized::Model prompt /^([\w.@()-]+[#>]\s?)$/ comment '# ' cmd :all do |cfg| cfg.each_line.to_a[1..-2].join end cmd :secret do |cfg| cfg.gsub!(/community (\S+) {/, 'community <hidden> {') cfg.gsub!(/ "\$\d\$\S+; ## SECRET-DATA/, ' <secret removed>;') cfg end cfg :telnet do username(/^login:/) password(/^Password:/) end cfg :telnet, :ssh do post_login 'set cli screen-length 0' post_login 'set cli screen-width 0' pre_logout 'exit' end cmd('show version') { |cfg| comment cfg } cmd('show system licenses') { |cfg| comment cfg } cmd('show configuration') { |cfg| comment cfg } cmd('show configuration | display-set') { |cfg| cfg } cmd('show chassis inventory') { |cfg| comment cfg } end
Version data entries
9 entries across 9 versions & 1 rubygems