summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/eos.rb
diff options
context:
space:
mode:
authorSamer Abdel-Hafez <sam@arahant.net>2014-03-07 10:49:56 +0100
committerSamer Abdel-Hafez <sam@arahant.net>2014-03-07 10:49:56 +0100
commit35bd38b5dd3ea11a7bfc5205031741686a263071 (patch)
treecd288846ad879eeb0eef488ccfe50113027fdba3 /lib/oxidized/model/eos.rb
parent81cfa3e5d5cd53c7862da5740543b6ea5bc8f5d0 (diff)
add Arista EOS and Cisco IOS XR models
Diffstat (limited to 'lib/oxidized/model/eos.rb')
-rw-r--r--lib/oxidized/model/eos.rb22
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