diff options
author | Juho Ylikorpi <juho@ylikorpi.com> | 2018-05-26 19:00:54 +0300 |
---|---|---|
committer | Wild Kat <wk@users.noreply.github.com> | 2018-05-26 18:00:54 +0200 |
commit | 7402b4f0902de2a1ece579f33b83977c03d9db2d (patch) | |
tree | b74bf7161b3e7bdeae122242a05d065b84f93378 | |
parent | aa6200d0fa144fe1510867e8dfdee8cd31f9d1b0 (diff) |
Comnet Microsemi Switch support (#1346)
* ComnetMicrosemiSwitch support
-rw-r--r-- | docs/Supported-OS-Types.md | 2 | ||||
-rw-r--r-- | lib/oxidized/model/comnetms.rb | 43 |
2 files changed, 45 insertions, 0 deletions
diff --git a/docs/Supported-OS-Types.md b/docs/Supported-OS-Types.md index ce0f9c6..5850bd1 100644 --- a/docs/Supported-OS-Types.md +++ b/docs/Supported-OS-Types.md @@ -63,6 +63,8 @@ * [TMOS (8800)](/lib/oxidized/model/corianttmos.rb) * [8600](/lib/oxidized/model/coriant8600.rb) * [Groove](/lib/oxidized/model/coriantgroove.rb) +* ComNet + * [ComNet Microsemi Switch](/lib/oxidized/model/comnetms.rb) * Cumulus * [Linux](/lib/oxidized/model/cumulus.rb) * DataCom diff --git a/lib/oxidized/model/comnetms.rb b/lib/oxidized/model/comnetms.rb new file mode 100644 index 0000000..1ce4601 --- /dev/null +++ b/lib/oxidized/model/comnetms.rb @@ -0,0 +1,43 @@ +class ComnetMS < Oxidized::Model + # Comnet Microsemi Switch + prompt /^\r?([\w.@()-]+[#>]\s?)$/ + comment '! ' + + cmd :all do |cfg| + cfg.each_line.to_a[1..-2].join + end + + cmd 'show running-config' do |cfg| + cfg.gsub! "\n\r", "\n" + cfg.gsub! /^[\r\n\s]*Building configuration\.\.\.\n/, '' + cfg.gsub! /^end\n/, '' + cfg + end + + cmd 'show version' do |cfg| + cfg.gsub! "\n\r", "\n" + cfg.gsub! /^MEMORY\s*:.*\n/, '' + cfg.gsub! /^FLASH\s*:.*\n/, '' + cfg.gsub! /^Previous Restart\s*:.*\n/, '' + cfg.gsub! /^System Time\s*:.*\n/, '' + cfg.gsub! /^System Uptime\s*:.*\n/, '' + comment cfg + end + + cfg :telnet do + username /^Username:/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' + post_login 'terminal width 0' + pre_logout 'exit' + end +end |