Skip to content

Commit

Permalink
Cambium ePMP Support (ytti#2195)
Browse files Browse the repository at this point in the history
* Create cambiumepmp.rb

* Update cambiumepmp.rb

Fixed whitespace found on line 11

* Update cambiumepmp.rb

Fixed another whitespace..

* Update CHANGELOG.md

* Update Supported-OS-Types.md
  • Loading branch information
martydingo authored Jan 26, 2022
1 parent cb11391 commit 291c75d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- Added docs for Dell/EMC Networking OS10 devices (@davromaniak)
- model for Zyxel 1308 OLTs (@baldoarturo)
- model for Linksys SRW switches (@glance-)
- model for Cambium ePMP radios (@martydingo)

### Changed

Expand Down Expand Up @@ -445,7 +446,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

### Fixed

- debugging, tests (by @ElvinEfendi)
- debugging, tests (by @ElvinEfendi)
- nos, panos, acos, procurve, eos, edgeswitch, aosw, fortios updates

## [0.14.3] - 2016-05-25
Expand Down Expand Up @@ -743,4 +744,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

### Fixed

- vars needs to return value of r, not value of evaluation
- vars needs to return value of r, not value of evaluation
1 change: 1 addition & 0 deletions docs/Supported-OS-Types.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
* [AXOS](/lib/oxidized/model/axos.rb)
* Cambium
* [Cambium (PMP450 Series)](/lib/oxidized/model/cambium.rb)
* [Cambium (ePMP Series)](/lib/oxidized/model/cambiumepmp.rb)
* Casa
* [Casa](/lib/oxidized/model/casa.rb)
* Centec Networks
Expand Down
17 changes: 17 additions & 0 deletions lib/oxidized/model/cambiumepmp.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
class CambiumePMP < Oxidized::Model
# Cambium ePMP Radios

prompt /.*>/

cmd :all do |cfg|
cfg.cut_both
end

pre do
cmd 'config show json'
end

cfg :ssh do
pre_logout 'exit'
end
end

0 comments on commit 291c75d

Please sign in to comment.