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

Added AOS Show Commands #701

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
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
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
=========

Comment on lines +1 to +5
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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
15 changes: 15 additions & 0 deletions sdk/Show_vlan.txt
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

15 changes: 15 additions & 0 deletions sdk/show _stacking.txt
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
214 changes: 214 additions & 0 deletions sdk/show_interfaces_brief.txt

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions sdk/show_interfaces_brief_sample.py
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)

9 changes: 9 additions & 0 deletions sdk/show_interfaces_transceiver.txt
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
10 changes: 10 additions & 0 deletions sdk/show_interfaces_transceiver_sample.py
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)

10 changes: 10 additions & 0 deletions sdk/show_stacking_sample.py
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)

10 changes: 10 additions & 0 deletions sdk/show_vlan_sample.py
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)

39 changes: 39 additions & 0 deletions sdk_generator/outputs/github_parser.json
Original file line number Diff line number Diff line change
Expand Up @@ -17641,6 +17641,15 @@
}
},
"show interfaces brief": {
"aos": {
"class": "ShowInterfacesBrief",
"doc": "Parser for show interfaces brief",
"module_name": "show_interfaces_brief",
"package": "genie.libs.parser",
"schema": "{\n'port': {\n Any (str) *: {\n Optional (str) port: <class 'str'>,\n Optional (str) type: <class 'str'>,\n Optional (str) intrusion: <class 'str'>,\n Optional (str) enabled: <class 'str'>,\n Optional (str) status: <class 'str'>,\n Optional (str) mode: <class 'str'>,\n Optional (str) mdiMode: <class 'str'>,\n Optional (str) flowControl: <class 'str'>,\n Optional (str) bcastLimit: <class 'str'>,\n },\n },\n}",
"uid": "show_interfaces_brief",
"url": "https://github.com/CiscoTestAutomation/genieparser/tree/master/src/genie/libs/parser/aos/show_interfaces_brief.py#L49"
},
"ironware": {
"class": "ShowInterfacesBrief",
"doc": "\n Parser for Show Interfaces Brief on Ironware devices\n ",
Expand Down Expand Up @@ -17950,6 +17959,15 @@
}
},
"show interfaces transceiver": {
"aos": {
"class": "ShowInterfacesTransceiver",
"doc": "Parser for show interfaces transceiver",
"module_name": "show_interfaces_transceiver",
"package": "genie.libs.parser",
"schema": "{\n'port': {\n Any (str) *: {\n Optional (str) port: <class 'str'>,\n Optional (str) type: <class 'str'>,\n Optional (str) productNumber: <class 'str'>,\n Optional (str) serialNumber: <class 'str'>,\n Optional (str) partNumber: <class 'str'>,\n },\n },\n}",
"uid": "show_interfaces_transceiver",
"url": "https://github.com/CiscoTestAutomation/genieparser/tree/master/src/genie/libs/parser/aos/show_interfaces_transceiver.py#L45"
},
"ios": {
"class": "ShowInterfacesTransceiver",
"doc": "\n Parser for:\n * show interfaces transciever\n * show interfaces <interface> transceiver\n ",
Expand Down Expand Up @@ -48744,6 +48762,17 @@
"url": "https://github.com/CiscoTestAutomation/genieparser/tree/master/src/genie/libs/parser/iosxe/show_power.py#L87"
}
},
"show stacking": {
"aos": {
"class": "ShowStacking",
"doc": "Parser for show stacking",
"module_name": "show_stacking",
"package": "genie.libs.parser",
"schema": "{\n'id': {\n Any (str) *: {\n Optional (str) id: <class 'str'>,\n Optional (str) mac: <class 'str'>,\n Optional (str) model: <class 'str'>,\n Optional (str) pri: <class 'str'>,\n Optional (str) status: <class 'str'>,\n },\n },\n}",
"uid": "show_stacking",
"url": "https://github.com/CiscoTestAutomation/genieparser/tree/master/src/genie/libs/parser/aos/show_stacking.py#L45"
}
},
"show stackwise-virtual": {
"iosxe": {
"class": "ShowStackwiseVirtual",
Expand Down Expand Up @@ -50500,6 +50529,15 @@
}
},
"show vlan": {
"aos": {
"class": "ShowVlan",
"doc": "Parser for show vlan",
"module_name": "show_vlan",
"package": "genie.libs.parser",
"schema": "{\n'vlans': {\n Any (str) *: {\n Optional (str) vlan_id: <class 'str'>,\n Optional (str) name: <class 'str'>,\n Optional (str) status: <class 'str'>,\n Optional (str) voice: <class 'str'>,\n Optional (str) jumbo: <class 'str'>,\n },\n },\n}",
"uid": "show_vlan",
"url": "https://github.com/CiscoTestAutomation/genieparser/tree/master/src/genie/libs/parser/aos/show_vlan.py#L45"
},
"ios": {
"class": "ShowVlan",
"doc": null,
Expand Down Expand Up @@ -51734,6 +51772,7 @@
"tokens": [
"aci",
"aireos",
"aos",
"apic",
"asa",
"asr1k",
Expand Down
3 changes: 3 additions & 0 deletions src/genie/libs/parser/aos/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from genie import abstract
abstract.declare_token(__name__)

145 changes: 145 additions & 0 deletions src/genie/libs/parser/aos/show_interfaces_brief.py
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
Loading