From 9766171e6d9b598e1858708a0dfe29707837b6cf Mon Sep 17 00:00:00 2001 From: Anton Aksola Date: Wed, 9 Apr 2014 17:26:01 +0300 Subject: add model for ALU TiMOS tested on SR and SAS routers --- lib/oxidized/model/timos.rb | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 lib/oxidized/model/timos.rb (limited to 'lib/oxidized/model') diff --git a/lib/oxidized/model/timos.rb b/lib/oxidized/model/timos.rb new file mode 100644 index 0000000..dc28580 --- /dev/null +++ b/lib/oxidized/model/timos.rb @@ -0,0 +1,45 @@ +class TiMOS < Oxidized::Model + + # Alcatel-Lucent TiMOS (Timetra) + # used in SR/ESS/SAS routers + + comment '# ' + + prompt /^([-\w\.:>\*]+\s?[#>]\s?)$/ + + cmd :all do |cfg, cmdstring| + new_cfg = comment "COMMAND: #{cmdstring}\n" + new_cfg << cfg.each_line.to_a[1..-2].join + end + + cmd 'show bof' do |cfg| + comment cfg + end + + cmd 'show system information' do |cfg| + # strip uptime + cfg.sub! /^System Up Time.*\n/, '' + comment cfg + end + + cmd 'show card state' do |cfg| + comment cfg + end + + cmd 'show boot-messages' do |cfg| + cfg.gsub! /\r/, "" + comment cfg + end + + cmd 'admin display-config' + + cfg :telnet do + username /^Login: / + password /^Password: / + end + + cfg :telnet, :ssh do + post_login 'environment no more' + pre_logout 'logout' + end +end -- cgit v1.2.1