summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornopedial <sam@arahant.net>2015-05-06 20:59:32 +0200
committernopedial <sam@arahant.net>2015-05-06 20:59:32 +0200
commitee6f048a8e518ab2d50fb41f99ef5029a518fe01 (patch)
tree4e23d707d66d13a678efca085d63a778a0200f4e
parent0062fb6dd291718714af046ca7be4a6b2c739d74 (diff)
parentad690160f1f0f96b541feb905a9a642f5307b996 (diff)
Merge pull request #116 from rixxxx/panos
Palo Alto PAN-OS support
-rw-r--r--README.md1
-rw-r--r--lib/oxidized/model/panos.rb26
2 files changed, 27 insertions, 0 deletions
diff --git a/README.md b/README.md
index c9a5b0d..1f7622d 100644
--- a/README.md
+++ b/README.md
@@ -67,6 +67,7 @@ Oxidized is a network device configuration backup tool. It's a RANCID replacment
* Juniper ScreenOS (Netscreen)
* Mikrotik RouterOS
* Ubiquiti AirOS
+ * Palo Alto PAN-OS
# Installation
diff --git a/lib/oxidized/model/panos.rb b/lib/oxidized/model/panos.rb
new file mode 100644
index 0000000..35624b7
--- /dev/null
+++ b/lib/oxidized/model/panos.rb
@@ -0,0 +1,26 @@
+class PanOS < Oxidized::Model
+
+ # PaloAlto PAN-OS model #
+
+ comment '! '
+
+ prompt /^[\w.\@:\(\)-]+>\s?$/
+
+ cmd :all do |cfg|
+ cfg.each_line.to_a[2..-3].join
+ end
+
+ cmd 'show system info' do |cfg|
+ cfg.gsub! /^(up)?time:\ .*\n/, ''
+ comment cfg
+ end
+
+ cmd 'show config running' do |cfg|
+ cfg
+ end
+
+ cfg :ssh do
+ post_login 'set cli pager off'
+ pre_logout 'exit'
+ end
+end