diff options
author | ytti <saku@ytti.fi> | 2016-06-22 18:26:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-22 18:26:37 +0300 |
commit | fd4833c64f18528cf5bbf44f46edef43e61fa2bc (patch) | |
tree | cc80f1aa097ac0552c97a9784e6abab4b961686e | |
parent | 52f77e74df5d62fefda2623583d929bb33583a62 (diff) | |
parent | e91b4d212ad8ae712c9d16f4d1e619030f8d1691 (diff) |
Merge pull request #475 from udhos/master
Add support for Coriant 8600 and Coriant 8800.
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | lib/oxidized/model/coriant8600.rb | 30 | ||||
-rw-r--r-- | lib/oxidized/model/corianttmos.rb | 25 |
3 files changed, 58 insertions, 0 deletions
@@ -74,6 +74,9 @@ Oxidized is a network device configuration backup tool. It's a RANCID replacemen * SMB (Nikola series) * Citrix * NetScaler (Virtual Applicance) + * Coriant (former Tellabs) + * TMOS (8800) + * 8600 * Cumulus * Linux * DataCom diff --git a/lib/oxidized/model/coriant8600.rb b/lib/oxidized/model/coriant8600.rb new file mode 100644 index 0000000..a48ffa5 --- /dev/null +++ b/lib/oxidized/model/coriant8600.rb @@ -0,0 +1,30 @@ +class Coriant8600 < Oxidized::Model + + comment '# ' + + prompt /^[^\s#>]+[#>]$/ + + cmd 'show hw-inventory' do |cfg| + comment cfg + end + + cmd 'show flash' do |cfg| + comment cfg + end + + cmd 'show run' do |cfg| + cfg + end + + cfg :telnet do + username /^user name:$/ + password /^password:$/ + end + + cfg :telnet, :ssh do + pre_logout 'exit' + post_login 'enable' + post_login 'terminal more off' + end + +end diff --git a/lib/oxidized/model/corianttmos.rb b/lib/oxidized/model/corianttmos.rb new file mode 100644 index 0000000..76603f6 --- /dev/null +++ b/lib/oxidized/model/corianttmos.rb @@ -0,0 +1,25 @@ +class CoriantTmos < Oxidized::Model + + comment '# ' + + prompt /^[^\s#]+#\s$/ + + cmd 'show node extensive' do |cfg| + comment cfg + end + + cmd 'show run' do |cfg| + cfg + end + + cfg :telnet do + username /^Login:\s$/ + password /^Password:\s$/ + end + + cfg :telnet, :ssh do + pre_logout 'exit' + post_login 'enable config terminal length 0' + end + +end |