summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/ucs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/oxidized/model/ucs.rb')
-rw-r--r--lib/oxidized/model/ucs.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/oxidized/model/ucs.rb b/lib/oxidized/model/ucs.rb
new file mode 100644
index 0000000..4418b68
--- /dev/null
+++ b/lib/oxidized/model/ucs.rb
@@ -0,0 +1,30 @@
+class UCS < Oxidized::Model
+ prompt /^(\r?[\w.@_()-]+[#]\s?)$/
+ comment '! '
+
+ cmd 'show version brief' do |cfg|
+ comment cfg
+ end
+
+ cmd 'show chassis detail' do |cfg|
+ comment cfg
+ end
+
+ cmd 'show fabric-interconnect detail' do |cfg|
+ comment cfg
+ end
+
+ cmd 'show configuration all | no-more' do |cfg|
+ cfg
+ end
+
+ cfg :ssh, :telnet do
+ post_login 'terminal length 0'
+ pre_logout 'exit'
+ end
+
+ cfg :telnet do
+ username /^login:/
+ password /^Password:/
+ end
+end