summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/mikrotik.rb
blob: 69eeabcc36995b3bcf3a05b7b405e1f1e9e8d6d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Mikrotik < Oxidized::Model
  prompt /^\[\w+@\S+\]\s?>\s?$/
  comment "# "

  cmd '/system routerboard print' do |cfg|                                                               
    comment cfg                                                                                          
  end                                                                                                    

  cmd '/export' do |cfg|                                                                                 
    cfg = cfg.split("\n").select { |line| not line[/^\#\s\w{3}\/\d{2}\/\d{4}.*$/] }                      
    cfg.join("\n") + "\n"                                                                                
  end                                                                                                    

  cfg :telnet do                                                                                         
    pre_logout "quit"                                                                                    
  end                                                                                                    

  cfg :ssh do                                                                                            
    exec true                                                                                            
  end                                                                                                    
end