summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/mtrlrfs.rb
diff options
context:
space:
mode:
authorroedie <github@roedie.nl>2016-02-19 13:53:45 +0100
committerroedie <github@roedie.nl>2016-02-19 13:53:45 +0100
commitbbad007a2a6ad3be285b95a105c882204da38fc8 (patch)
treedf1cf870f4000feea716bf215e8754040131308e /lib/oxidized/model/mtrlrfs.rb
parenta59d4a8e4fd5077a5b423d0b988295f1741da6b3 (diff)
Rename to be consistent
Diffstat (limited to 'lib/oxidized/model/mtrlrfs.rb')
-rw-r--r--lib/oxidized/model/mtrlrfs.rb35
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
+