diff options
author | roedie <github@roedie.nl> | 2016-02-20 10:49:01 +0100 |
---|---|---|
committer | roedie <github@roedie.nl> | 2016-02-20 10:49:01 +0100 |
commit | 20877f5bad4f28eefc6a52b5c69e3914270fd90b (patch) | |
tree | a7e935f27974fcf8f5c7198f12cc0cb726784352 /lib/oxidized/model/ipos.rb | |
parent | 039632f6c8ec24d3448848ffd6f674cdccd7c59c (diff) |
Rename to IPOS
Diffstat (limited to 'lib/oxidized/model/ipos.rb')
-rw-r--r-- | lib/oxidized/model/ipos.rb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/oxidized/model/ipos.rb b/lib/oxidized/model/ipos.rb new file mode 100644 index 0000000..e20cf40 --- /dev/null +++ b/lib/oxidized/model/ipos.rb @@ -0,0 +1,35 @@ +class IPOS < Oxidized::Model + + # Ericsson SSR (IPOS) + # Redback SE (SEOS) + + prompt /^([\[\]\w.@-]+[#>]\s?)$/ + comment '! ' + + cmd 'show chassis' do |cfg| + comment cfg + end + + cmd 'show hardware detail' do |cfg| + comment cfg + end + + cmd 'show release' do |cfg| + comment cfg + end + + cmd 'show config' + + cfg :telnet do + username /^login:/ + password /^\r*password:/ + end + + cfg :telnet, :ssh do + post_login 'terminal length 0' + pre_logout 'exit' + pre_logout 'n' + end + +end + |