-
Notifications
You must be signed in to change notification settings - Fork 399
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
Added AOS Show Commands #701
Open
Alexpf20210007
wants to merge
8
commits into
CiscoTestAutomation:main
Choose a base branch
from
Alexpf20210007:master
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
05674c6
C
Alexpf20210007 910456c
Merge branch 'CiscoTestAutomation:master' into master
Alexpf20210007 28725d8
Added multiple parsers
Alexpf20210007 6de7336
Merge remote-tracking branch 'refs/remotes/origin/master'
Alexpf20210007 8d1f649
Merge branch 'CiscoTestAutomation:master' into master
Alexpf20210007 22479b3
Added example results for three commands
Alexpf20210007 4f6f2c1
Merge branch 'master' of https://github.com/Alexpf20210007/genieparser
Alexpf20210007 1fc33fc
Updated changelog
Alexpf20210007 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
changelog/undistributed/changelog_add_aos_show_commands_20220905.rst
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 @@ | ||
Only one changelog file per pull request. Combine these two templates where applicable. | ||
|
||
Templates | ||
========= | ||
|
||
-------------------------------------------------------------------------------- | ||
New | ||
-------------------------------------------------------------------------------- | ||
* AOS | ||
* Added ShowInterfacesBrief: | ||
* show interfaces brief | ||
* Added ShowVlan: | ||
* show vlan | ||
* Added ShowInterfacesTransceiver: | ||
* show interfaces transceiver | ||
* Added ShowStacking: | ||
* show stacking |
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,15 @@ | ||
|
||
Status and Counters - VLAN Information | ||
|
||
Maximum VLANs to support : 256 | ||
Primary VLAN : DEFAULT_VLAN | ||
Management VLAN : | ||
|
||
VLAN ID Name | Status Voice Jumbo | ||
------- -------------------------------- + ---------- ----- ----- | ||
1 DEFAULT_VLAN | Port-based No No | ||
2 VLAN80_DATA_192.168.2.0 | Port-based No No | ||
3 VLAN81_VOICE_192.168.3.0 | Port-based No No | ||
101 VLAN101-Security-192.168.101.0 | Port-based No No | ||
102 VLAN102-MGMT-192.168.102.0 | Port-based No No | ||
|
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,15 @@ | ||
Stack ID : 00011234-56654321 | ||
MAC Address : 040973-768d45 | ||
Stack Topology : Ring | ||
Stack Status : Active | ||
Split Policy : One-Fragment-Up | ||
Uptime : 2d 2h 10m | ||
Software Version : KB.16.10.0009 | ||
|
||
Mbr | ||
ID Mac Address Model Pri Status | ||
--- ----------------- ------------------------------------- --- --------------- | ||
1 123456-654321 Aruba JL076A 3810M-40G-8SR-PoE+-1-... 255 Commander | ||
2 123456-654322 Aruba JL076A 3810M-40G-8SR-PoE+-1-... 128 Member | ||
3 123456-654323 Aruba JL076A 3810M-40G-8SR-PoE+-1-... 128 Standby | ||
4 123456-654324 Aruba JL076A 3810M-40G-8SR-PoE+-1-... 128 Member |
Large diffs are not rendered by default.
Oops, something went wrong.
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,10 @@ | ||
import pprint | ||
from genie.conf.base import Device | ||
dev = Device(name="aName", os="aos) | ||
dev.custom.abstraction = {"order":["os"]} | ||
with open('show_interfaces_brief.txt' as f: | ||
output = f.read() | ||
print(output) | ||
res=dev.parse("show_interfaces_brief", output=output) | ||
pprint.pprint(res, width=100) | ||
|
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,9 @@ | ||
Transceiver Technical Information: | ||
|
||
Product Serial Part | ||
Port Type Number Number Number | ||
------- ----------- ------------ ------------------ ---------- | ||
1/A4 SFP+SR J9150A N031818B2003 1990-4065 | ||
2/A4 SFP+SR J9150A N031818B2004 1990-4065 | ||
|
||
* third-party transceiver |
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,10 @@ | ||
import pprint | ||
from genie.conf.base import Device | ||
dev = Device(name="aName", os="aos) | ||
dev.custom.abstraction = {"order":["os"]} | ||
with open('show_interfaces_transceiver.txt' as f: | ||
output = f.read() | ||
print(output) | ||
res=dev.parse("show_interfaces_transceiver", output=output) | ||
pprint.pprint(res, width=100) | ||
|
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,10 @@ | ||
import pprint | ||
from genie.conf.base import Device | ||
dev = Device(name="aName", os="aos) | ||
dev.custom.abstraction = {"order":["os"]} | ||
with open('show_stacking.txt' as f: | ||
output = f.read() | ||
print(output) | ||
res=dev.parse("show_stacking", output=output) | ||
pprint.pprint(res, width=100) | ||
|
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,10 @@ | ||
import pprint | ||
from genie.conf.base import Device | ||
dev = Device(name="aName", os="aos) | ||
dev.custom.abstraction = {"order":["os"]} | ||
with open('show_vlan.txt' as f: | ||
output = f.read() | ||
print(output) | ||
res=dev.parse("show_vlan", output=output) | ||
pprint.pprint(res, width=100) | ||
|
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
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,3 @@ | ||
from genie import abstract | ||
abstract.declare_token(__name__) | ||
|
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,145 @@ | ||
"""show_interfaces_brief.py | ||
|
||
""" | ||
import re | ||
import logging | ||
|
||
from genie.metaparser import MetaParser | ||
from genie.libs.parser.utils.common import Common | ||
from genie.metaparser.util.schemaengine import Any, Optional | ||
|
||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
def regexp(expression): | ||
def match(value): | ||
if re.match(expression,value): | ||
return value | ||
else: | ||
raise TypeError("Value '%s' doesnt match regex '%s'" | ||
%(value, expression)) | ||
return match | ||
|
||
# ==================================================== | ||
# schema for show interfaces brief | ||
# ==================================================== | ||
class ShowInterfacesBriefSchema(MetaParser): | ||
"""Schema for show interfaces brief""" | ||
schema = { | ||
'port':{ | ||
Any():{ | ||
Optional('port'): str, | ||
Optional('type'): str, | ||
Optional('intrusion'): str, | ||
Optional('enabled'): str, | ||
Optional('status'): str, | ||
Optional('mode'): str, | ||
Optional('mdiMode'): str, | ||
Optional('flowControl'): str, | ||
Optional('bcastLimit'): str, | ||
|
||
} | ||
}, | ||
} | ||
|
||
# ==================================================== | ||
# parser for show Interfaces Brief | ||
# ==================================================== | ||
class ShowInterfacesBrief(ShowInterfacesBriefSchema): | ||
"""Parser for show interfaces brief""" | ||
cli_command = 'show interfaces brief' | ||
|
||
def cli(self, output=None): | ||
if output is None: | ||
out = self.device.execute(self.cli_command) | ||
else: | ||
out = output | ||
|
||
# Status and Counters - Port Status | ||
|
||
# | Intrusion MDI Flow Bcast | ||
# Port Type | Alert Enabled Status Mode Mode Ctrl Limit | ||
# ------------ ---------- + --------- ------- ------ ---------- ---- ---- ----- | ||
# 1/1 100/1000T | No Yes Up 1000FDx MDI off 0 | ||
# 1/2 100/1000T | No Yes Up 1000FDx MDI off 0 | ||
# 1/3 100/1000T | No Yes Up 1000FDx MDI off 0 | ||
# 1/4 100/1000T | No Yes Up 1000FDx MDI off 0 | ||
# 1/5 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/6 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/7 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/8 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/9 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/10 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/11 100/1000T | No Yes Up 100FDx MDIX off 0 | ||
# 1/12 100/1000T | No Yes Down 1000FDx NA off 0 | ||
# 1/13 100/1000T | No Yes Up 100FDx MDIX off 0 | ||
# 1/14 100/1000T | No Yes Up 100FDx MDIX off 0 | ||
# 1/15 100/1000T | No Yes Up 100FDx MDIX off 0 | ||
# 1/16 100/1000T | No Yes Up 100FDx MDIX off 0 | ||
# 1/17 100/1000T | No Yes Up 100FDx MDIX off 0 | ||
# 1/18 100/1000T | No Yes Up 100FDx MDIX off 0 | ||
# 1/19 100/1000T | No Yes Up 100FDx MDIX off 0 | ||
# 1/20 100/1000T | No Yes Up 100FDx MDI off 0 | ||
# 1/21 100/1000T | No Yes Up 100FDx MDIX off 0 | ||
# 1/22 100/1000T | No Yes Up 100FDx MDIX off 0 | ||
# 1/23 100/1000T | No Yes Up 1000FDx MDIX off 0 | ||
# 1/24 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/25 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/26 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/27 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/28 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/29 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/30 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/31 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/32 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/33 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/34 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/35 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/36 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/37 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/38 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/39 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/40 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/41 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/42 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/43 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/44 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/45 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/46 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/47 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/48 100/1000T | No Yes Down 1000FDx Auto off 0 | ||
# 1/A1 | No Yes Down . off 0 | ||
# 1/A2 | No Yes Down . off 0 | ||
# 1/A3-Trk1 SFP+SR | No Yes Up 10GigFD NA off 0 | ||
# 1/A4-Trk1 SFP+SR | No Yes Up 10GigFD NA off 0 | ||
|
||
p0 = re.compile(r'\s+(?P<port>(\S+[^ ]?))?\s\s+?(?P<type>(\S+|(\s+)))?\s\s+\|\s(?P<intrusion>(Yes|No))?\s+(?P<enabled>(Yes|No))?\s+(?P<status>Up|Down|)?\s+(?P<mode>([0-9A-Za-z]+|\.\s\s\s\s\s\s))?\s\s+?(?P<mdiMode>(MDI|Auto|MDIX|NA|\s\s))?\s+(?P<flowControl>(on|off))?\s+(?P<bcastLimit>([0-9]+))?$') | ||
|
||
interfaces_dict = {} | ||
for line in out.splitlines(): | ||
if line: | ||
line = line.rstrip() | ||
else: | ||
continue | ||
|
||
m = p0.match(line) | ||
if m: | ||
interfaces = m.groupdict()['port'] | ||
if 'port' not in interfaces_dict: | ||
interfaces_dict['port'] = {} | ||
|
||
if interfaces not in interfaces_dict: | ||
interfaces_dict['port'][interfaces] = {} | ||
|
||
interfaces_dict['port'][interfaces]['port'] = interfaces | ||
interfaces_dict['port'][interfaces]['type'] = m.groupdict()['type'] | ||
interfaces_dict['port'][interfaces]['intrusion'] = m.groupdict()['intrusion'] | ||
interfaces_dict['port'][interfaces]['enabled'] = m.groupdict()['enabled'] | ||
interfaces_dict['port'][interfaces]['status'] = m.groupdict()['status'] | ||
interfaces_dict['port'][interfaces]['mode'] = m.groupdict()['mode'] | ||
interfaces_dict['port'][interfaces]['mdiMode'] = m.groupdict()['mdiMode'] | ||
interfaces_dict['port'][interfaces]['flowControl'] = m.groupdict()['flowControl'] | ||
interfaces_dict['port'][interfaces]['bcastLimit'] = m.groupdict()['bcastLimit'] | ||
|
||
return interfaces_dict |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.