diff options
author | Samer Abdel-Hafez <sam@arahant.net> | 2014-03-07 10:49:56 +0100 |
---|---|---|
committer | Samer Abdel-Hafez <sam@arahant.net> | 2014-03-07 10:49:56 +0100 |
commit | 35bd38b5dd3ea11a7bfc5205031741686a263071 (patch) | |
tree | cd288846ad879eeb0eef488ccfe50113027fdba3 /lib/oxidized/model/eos.rb | |
parent | 81cfa3e5d5cd53c7862da5740543b6ea5bc8f5d0 (diff) |
add Arista EOS and Cisco IOS XR models
Diffstat (limited to 'lib/oxidized/model/eos.rb')
-rw-r--r-- | lib/oxidized/model/eos.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/oxidized/model/eos.rb b/lib/oxidized/model/eos.rb new file mode 100644 index 0000000..e6e0bf1 --- /dev/null +++ b/lib/oxidized/model/eos.rb @@ -0,0 +1,22 @@ +class EOS < Oxidized::Model + + # Arista EOS model # + # need to add telnet support here .. # + + prompt /^[^\(]+\([^\)]+\)#/ + + comment '! ' + + cmd 'show inventory | no-more' do |cfg| + comment cfg + end + + cmd 'show running-config | no-more' do |cfg| + cfg + end + + cfg :telnet, :ssh do + pre_logout 'exit' + end + +end |