BVQ 2022.H2.1 and higherBVQ collects topology and performance data from Cisco MDS switches using the Cisco MDS NX-API. This feature needs to be enabled on all Cisco MDS switches that should be monitored by BVQ. Code Block |
---|
theme | Midnight |
---|
title | Enable nxapi |
---|
| switch# show feature
Feature Name Instance State
-------------------- -------- -----
...
nxapi 1 disabled
...
switch# conf t
switch(config)# feature nxapi
switch# show feature
Feature Name Instance State
-------------------- -------- -----
...
nxapi 1 enabled
... |
Cisco SAN Switch UserThe following user has to be added on each and every switch you want to scan: Code Block |
---|
theme | Midnight |
---|
title | Add BVQ User via CLI |
---|
| cisco-BVQ-1# config terminal
Enter configuration commands, one per line. End with CNTL/Z.
cisco-BVQ-1(config)# role name bvq-role
cisco-BVQ-1(config-role)# description Monitoring role for BVQ
cisco-BVQ-1(config-role)# rule 1 permit show
cisco-BVQ-1(config-role)# exit
cisco-BVQ-1(config)# role show
cisco-BVQ-1(config)# show role
Role: bvq-role
Description: Monitoring role for BVQ
Vsan policy: permit (default)
-------------------------------------------------
Rule Type Command-type Feature
-------------------------------------------------
1 permit show *
cisco-BVQ-1(config)# username bvq-user password P@ssw0rd role bvq-role
cisco-BVQ-1(config)# exit
cisco-BVQ-1# show user-account
user:bvq-user
this user account has no expiry date
roles:bvq-role |
Code Block |
---|
theme | Midnight |
---|
title | copy and paste following commands |
---|
| config terminal
role name bvq-role
description Monitoring role for BVQ
rule 1 permit show
exit
username bvq-user password P@ssw0rd role bvq-role
exit |
|