Skip to content

Commit

Permalink
Cumulus: Add nvue support
Browse files Browse the repository at this point in the history
  • Loading branch information
Lagertonne committed Aug 13, 2024
1 parent fe8500c commit c7b3b1e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- fortios: variable `fullconfig` to get the configuration with default values. Fixes: #3159 (@robertcheramy)
- model for VMWare NSX DFW (@elmobp)
- model for F5OS (@teunvink)
- cumulus: Add possibility to use NVUE (@lagertonne)

### Changed
- h3c: change prompt to expect either angle (user-view) or square (system-view) brackets (@nl987)
Expand Down
5 changes: 5 additions & 0 deletions docs/Model-Notes/Cumulus.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ A variable has been added to enable users running Cumulus Linux > 3.4.0 to targe
## NCLU
It is possible to switch to [NCLU](https://docs.nvidia.com/networking-ethernet-software/cumulus-linux-44/System-Configuration/Network-Command-Line-Utility-NCLU/) as a configuration collecting method, by setting `cumulus_use_nclu` to true

## NVUE
It is also possible to use [NVUE](https://docs.nvidia.com/networking-ethernet-software/knowledge-base/Setup-and-Getting-Started/NVUE-Cheat-Sheet/) as a configuration collecting method, by setting `cumulus_use_nvue` to true.

### Example usage

```yaml
Expand Down Expand Up @@ -43,4 +46,6 @@ The default value for `cumulus_routing_daemon` is `quagga` so existing installat

The default value for `cumulus_use_nclu` is `false`, in case NCLU is not installed.

The default value for `cumulus_use_nvue` is `false`, in case NVUE is not installed.

Back to [Model-Notes](README.md)
3 changes: 3 additions & 0 deletions lib/oxidized/model/cumulus.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@ def add_comment(comment)
# show the persistent configuration
pre do
use_nclu = vars(:cumulus_use_nclu) || false
use_nvue = vars(:cumulus_use_nvue) || false

if use_nclu
cfg = cmd 'net show configuration commands'
elsif use_nvue
cfg = cmd 'nv config show --color off'
else
# Set FRR or Quagga in config
routing_daemon = vars(:cumulus_routing_daemon) ? vars(:cumulus_routing_daemon).downcase : 'quagga'
Expand Down

0 comments on commit c7b3b1e

Please sign in to comment.