summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorytti <saku@ytti.fi>2016-02-20 13:24:46 +0200
committerytti <saku@ytti.fi>2016-02-20 13:24:46 +0200
commit0c9b345159b7cb70994d95bdd07a191fc3ad23d8 (patch)
tree4ed9011b10925855190a722ade02ea1b185e52cf
parenta442dcd5eb7ac433c7041459ba6adf4e003b88a3 (diff)
parent31726688602b58917a8cec523ca9df3ab2a21155 (diff)
Merge pull request #323 from roedie/add-redback
Add support for Ericsson Redback
-rw-r--r--README.md2
-rw-r--r--lib/oxidized/model/ipos.rb35
2 files changed, 37 insertions, 0 deletions
diff --git a/README.md b/README.md
index e077b84..0f22d2a 100644
--- a/README.md
+++ b/README.md
@@ -75,6 +75,8 @@ Oxidized is a network device configuration backup tool. It's a RANCID replacemen
* DELL
* PowerConnect
* AOSW
+ * Ericsson/Redback
+ * IPOS (former SEOS)
* Extreme Networks
* XOS
* WM
diff --git a/lib/oxidized/model/ipos.rb b/lib/oxidized/model/ipos.rb
new file mode 100644
index 0000000..e20cf40
--- /dev/null
+++ b/lib/oxidized/model/ipos.rb
@@ -0,0 +1,35 @@
+class IPOS < Oxidized::Model
+
+ # Ericsson SSR (IPOS)
+ # Redback SE (SEOS)
+
+ prompt /^([\[\]\w.@-]+[#>]\s?)$/
+ comment '! '
+
+ cmd 'show chassis' do |cfg|
+ comment cfg
+ end
+
+ cmd 'show hardware detail' do |cfg|
+ comment cfg
+ end
+
+ cmd 'show release' do |cfg|
+ comment cfg
+ end
+
+ cmd 'show config'
+
+ cfg :telnet do
+ username /^login:/
+ password /^\r*password:/
+ end
+
+ cfg :telnet, :ssh do
+ post_login 'terminal length 0'
+ pre_logout 'exit'
+ pre_logout 'n'
+ end
+
+end
+