diff options
| author | ytti <saku@ytti.fi> | 2016-02-19 16:02:03 +0200 | 
|---|---|---|
| committer | ytti <saku@ytti.fi> | 2016-02-19 16:02:03 +0200 | 
| commit | a442dcd5eb7ac433c7041459ba6adf4e003b88a3 (patch) | |
| tree | 7f5ccba8e18864690ef172705b2e183b163ef414 /lib/oxidized/model | |
| parent | 370d90bddd1c8c086c455175fdb88de5931a99d1 (diff) | |
| parent | bbad007a2a6ad3be285b95a105c882204da38fc8 (diff) | |
Merge pull request #324 from roedie/add-motorola-wm
Add support for Motorola wireless controllers
Diffstat (limited to 'lib/oxidized/model')
| -rw-r--r-- | lib/oxidized/model/mtrlrfs.rb | 35 | 
1 files changed, 35 insertions, 0 deletions
| diff --git a/lib/oxidized/model/mtrlrfs.rb b/lib/oxidized/model/mtrlrfs.rb new file mode 100644 index 0000000..3931a5b --- /dev/null +++ b/lib/oxidized/model/mtrlrfs.rb @@ -0,0 +1,35 @@ +class mtrlrfs < Oxidized::Model + +  # Motorola RFS/Extreme WM + +  comment  '# ' + +  cmd :all do |cfg| +    # xos inserts leading \r characters and other trailing white space. +    # this deletes extraneous \r and trailing white space. +    cfg.each_line.to_a[1..-2].map{|line|line.delete("\r").rstrip}.join("\n") + "\n" +  end + +  cmd 'show version' do |cfg| +    comment cfg +  end + +  cmd 'show licenses' do |cfg| +    comment cfg +  end + +  cmd 'show running-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 + | 
