diff options
author | Christoffer Stokbaek <christoffers@easyspeedy.com> | 2016-08-04 16:30:18 +0200 |
---|---|---|
committer | Christoffer Stokbaek <christoffers@easyspeedy.com> | 2016-08-04 16:30:18 +0200 |
commit | 1aca290d70b5f2dec16bc313111cca4155b80a23 (patch) | |
tree | cf45bf9b894ae099358cbb60bedfdaae945d95ed /lib/oxidized | |
parent | 3bcf2ebc61294f2421f69c501440e4040968949a (diff) |
Added support for pfSense
Diffstat (limited to 'lib/oxidized')
-rw-r--r-- | lib/oxidized/pfsense.rb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/oxidized/pfsense.rb b/lib/oxidized/pfsense.rb new file mode 100644 index 0000000..67a1a49 --- /dev/null +++ b/lib/oxidized/pfsense.rb @@ -0,0 +1,34 @@ +class PfSense < Oxidized::Model + + prompt /^\e\[0;1;33m\[\S*\e\[0;1;33m\]\e\[0;1;33m\e\[\S*\e\[0;1;31m@\S*\e\[0;1;33m\]\S*\e\[0;1;31m:\e\[0;0;0m\s$/ + comment '# ' + + + #add a comment in the final conf + def add_comment comment + "\n###### #{comment} ######\n" + end + + cmd :all do |cfg| + cfg.each_line.to_a[1..-2].join + end + + #show the persistent configuration + pre do + cfg = add_comment 'Configuration' + cfg += cmd 'cat /cf/conf/config.xml' + end + + + cfg :telnet do + username /^Username:/ + password /^Password:/ + end + + cfg :telnet, :ssh do + pre_logout 'exit' + end + + +end + |