-
Notifications
You must be signed in to change notification settings - Fork 735
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Template: WLC - show rf profile-summary (#513)
- Loading branch information
1 parent
e050684
commit 151c3f1
Showing
4 changed files
with
58 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Value PROFILE (\S+) | ||
#Value PROFILE (\S+) | ||
Value BAND (\d\.?4? GHz) | ||
Value DESC ((\S+(.?\S+)+)) | ||
Value N_ONLY (\w+) | ||
Value APPLIED (\w+) | ||
|
||
|
||
Start | ||
^.+\.+ | ||
^RF\s+Profile\s+Name\s+Band\s+Description\s+11n-client-only\s+Applied -> Profile | ||
^\s*$$ | ||
^. -> Error | ||
|
||
Profile | ||
^(?:High|Low|Typical)-Client-Density-802.11 | ||
^${PROFILE}\s+${BAND}\s+${DESC}\s+${N_ONLY}\s+${APPLIED} -> Record | ||
^-+[\s|-]+$$ | ||
^\s*$$ | ||
^. -> Error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
tests/cisco_wlc_ssh/show_rf-profile_summary/cisco_wlc_ssh_show_rf-profile_summary.parsed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
parsed_sample: | ||
- applied: 'Yes' | ||
band: 5 GHz | ||
desc: <none> | ||
n_only: disable | ||
profile: VSW_OFFICE | ||
- applied: 'Yes' | ||
band: 5 GHz | ||
desc: <none> | ||
n_only: disable | ||
profile: VSW_OUTDOOR | ||
- applied: 'Yes' | ||
band: 5 GHz | ||
desc: <none> | ||
n_only: disable | ||
profile: VSW_WAREHOUSE |
18 changes: 18 additions & 0 deletions
18
tests/cisco_wlc_ssh/show_rf-profile_summary/cisco_wlc_ssh_show_rf-profile_summary.raw
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
Number of RF Profiles............................ 9 | ||
|
||
Out Of Box State................................. Disabled | ||
|
||
Out Of Box Persistence........................... Disabled | ||
|
||
RF Profile Name Band Description 11n-client-only Applied | ||
--------------------------------- ------- ----------------------------------- ------------------ ---------- | ||
High-Client-Density-802.11a 5 GHz <none> disable No | ||
High-Client-Density-802.11bg 2.4 GHz <none> disable No | ||
Low-Client-Density-802.11a 5 GHz <none> disable No | ||
Low-Client-Density-802.11bg 2.4 GHz <none> disable No | ||
Typical-Client-Density-802.11a 5 GHz <none> disable No | ||
Typical-Client-Density-802.11bg 2.4 GHz <none> disable No | ||
VSW_OFFICE 5 GHz <none> disable Yes | ||
VSW_OUTDOOR 5 GHz <none> disable Yes | ||
VSW_WAREHOUSE 5 GHz <none> disable Yes |