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 | |
| parent | 370d90bddd1c8c086c455175fdb88de5931a99d1 (diff) | |
| parent | bbad007a2a6ad3be285b95a105c882204da38fc8 (diff) | |
Merge pull request #324 from roedie/add-motorola-wm
Add support for Motorola wireless controllers
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | lib/oxidized/model/mtrlrfs.rb | 35 | 
2 files changed, 38 insertions, 0 deletions
| @@ -77,6 +77,7 @@ Oxidized is a network device configuration backup tool. It's a RANCID replacemen     * AOSW   * Extreme Networks     * XOS +   * WM   * F5     * TMOS   * Force10 @@ -94,6 +95,8 @@ Oxidized is a network device configuration backup tool. It's a RANCID replacemen     * ScreenOS (Netscreen)   * Mikrotik     * RouterOS + * Motorola +   * RFS   * MRV     * MasterOS   * Opengear 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 + | 
