Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cambium ePMP Support #2195

Merged
6 commits merged into from
Jan 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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