diff options
author | Alexandre-io <alexandre@gotoserv.com> | 2016-05-25 16:59:43 +0200 |
---|---|---|
committer | Alexandre-io <alexandre@gotoserv.com> | 2016-05-30 18:33:40 +0200 |
commit | 559e5c7ce9c7d6ee6849b9cabe3d574f1723ae31 (patch) | |
tree | a8f314ff32dba2a0cf5e270115eee6ab06680ec2 | |
parent | 38e119f714f0fc22b6556eec7bff5870505ba15f (diff) |
Add support for watchguard (FirewareOS)
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | lib/oxidized/model/firewareos.rb | 24 |
2 files changed, 26 insertions, 0 deletions
@@ -121,6 +121,8 @@ Oxidized is a network device configuration backup tool. It's a RANCID replacemen * AirOS * Edgeos * EdgeSwitch + * Watchguard + * Fireware OS * Zyxel * ZyNOS diff --git a/lib/oxidized/model/firewareos.rb b/lib/oxidized/model/firewareos.rb new file mode 100644 index 0000000..f2bef4c --- /dev/null +++ b/lib/oxidized/model/firewareos.rb @@ -0,0 +1,24 @@ +class FirewareOS < Oxidized::Model + + prompt /^\[?\w*\]?\w*<?\w*>?#\s*$/ + comment '-- ' + + cmd :all do |cfg| + cfg.each_line.to_a[1..-2].join + end + + cmd 'show sysinfo' do |cfg| + # avoid commits due to uptime + cfg = cfg.each_line.select { |line| not line.match /(.*time.*)|(.*memory.*)|(.*cpu.*)/ } + cfg = cfg.join + comment cfg + end + + cmd 'export config to console' + + cfg :ssh do + pre_logout 'exit' + end + +end + |