Sha256: fd04f85232b3cc2f2217f4127831674db089204c908da27743508c8b7aaee0b8
Contents?: true
Size: 894 Bytes
Versions: 3
Compression:
Stored size: 894 Bytes
Contents
class RouterOS < Oxidized::Model prompt /\[\w+@\S+(\s?\S+)*\]\s?>\s?$/ comment "# " cmd '/system routerboard print' do |cfg| comment cfg end cmd '/system package update print' do |cfg| comment cfg end cmd '/system history print' do |cfg| comment cfg end post do run_cmd = vars(:remove_secret) ? '/export hide-sensitive' : '/export' cmd run_cmd do |cfg| cfg.gsub! /\x1B\[([0-9]{1,3}((;[0-9]{1,3})*)?)?[m|K]/, '' # strip ANSI colours cfg.gsub! /\\\r\n\s+/, '' # strip new line cfg.gsub! /# inactive time\r\n/, '' # Remove time based system comment cfg = cfg.split("\n").reject { |line| line[/^\#\s\w{3}\/\d{2}\/\d{4}.*$/] } cfg.join("\n") + "\n" end end cfg :telnet do username /^Login:/ password /^Password:/ end cfg :telnet, :ssh do pre_logout 'quit' end cfg :ssh do exec true end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
oxidized-0.24.0 | lib/oxidized/model/routeros.rb |
oxidized-0.23.0 | lib/oxidized/model/routeros.rb |
oxidized-0.22.0 | lib/oxidized/model/routeros.rb |