diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/oxidized/model/ucs.rb | 31 | 
1 files changed, 31 insertions, 0 deletions
| diff --git a/lib/oxidized/model/ucs.rb b/lib/oxidized/model/ucs.rb new file mode 100644 index 0000000..a1f6c10 --- /dev/null +++ b/lib/oxidized/model/ucs.rb @@ -0,0 +1,31 @@ +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 | 
