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 show nat, show access-list, handled split line routes and added values to show bgp neighbors #679

Open
wants to merge 51 commits into
base: main
Choose a base branch
from

Conversation

MikeJames15
Copy link

Description

Added two parsers for asa:
- "show access-list"
- "show nat"

Modified show bgp all neighbors routes on iosxe:
- to always have a path value even if it is empty
- handled split lines

Modified show bgp all neighbors on iosxe:
- added last_read, last_write, up_time, down_time

Motivation and Context

Missing parsers/values

Impact (If any)

Screenshots:

Checklist:

  • I have updated the changelog.
  • I have updated the documentation (If applicable).
  • I have added tests to cover my changes (If applicable).
  • All new and existing tests passed.
  • All new code passed compilation.

MikeJames15 and others added 30 commits November 18, 2021 15:43
… hex of the form 0xfffffff. The schema expected a string.
… so returned None and setdefault was then called on that
…controls_flows and adjusted tests accordingly
…e line number and changed integer fields to use integer instead of string. Fixed bugs thrown by tests and adapted tests to new formatting
Updating upstream master into MikeJames15/genieparser to resolve conflicts
… under entry and entries expanded from objects under group-expansion, moved destination outside of source which is no longer needed with the expansion
…and handled split lines due to long output. Also replaced if not in assign in dicts with calls to setdefault()
…ng localprf. The comparison was looking for greater than 10 spaces to mean that metric is present when it should have been less than 11 since metric interrupts the consecutive spaces.
… hex of the form 0xfffffff. The schema expected a string.
… so returned None and setdefault was then called on that
…controls_flows and adjusted tests accordingly
…e line number and changed integer fields to use integer instead of string. Fixed bugs thrown by tests and adapted tests to new formatting
… under entry and entries expanded from objects under group-expansion, moved destination outside of source which is no longer needed with the expansion
…ng localprf. The comparison was looking for greater than 10 spaces to mean that metric is present when it should have been less than 11 since metric interrupts the consecutive spaces.
@MikeJames15 MikeJames15 requested a review from a team as a code owner June 22, 2022 19:44
@MikeJames15 MikeJames15 requested review from Taarini and omehrabi June 22, 2022 19:44
Interfaces were optional and so was source and destination and flags. The entry_num regex was looking for \d* which matched a zero length digit so an empty string would match it.
…e schema but not in the regex that extracts them. Made them mandatory in both
…ts were not getting initialized properly. Valid conns rate line was not parsed properly. Renamed perfmon_stats_per_sec to stats_per_sec. context variable was being used erroneously as group name and as dictionary creating unpredictable behaviour
…bers. I decided it would be better to have it in text as one_min and five_min respectively.
Copy link
Contributor

@Taarini Taarini left a comment

Choose a reason for hiding this comment

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

Can you please split the PR. It's difficult to review. Please have one parser PR

@@ -0,0 +1,8 @@
--------------------------------------------------------------------------------
Copy link
Contributor

Choose a reason for hiding this comment

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

please merge all the changelogs

Copy link
Contributor

@GerriorL GerriorL left a comment

Choose a reason for hiding this comment

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

Hi Mike,

Please catch your fork up to the latest code on our repo and make a new json file so we can verify that all the latest code passes its tests. In addition there are a couple small change requests.

@@ -0,0 +1,273 @@
''' show_access_list.py
Copy link
Contributor

Choose a reason for hiding this comment

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

File should be named show_acl.py for consistency with other OSes

"""

schema = {
Optional('access-list'): {
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
Optional('access-list'): {
Optional('access_list'): {

# access-list acl1 line 4 extended deny ip any4 any4 log informational interval 300 (hitcnt=0) 0xffffffff
# access-list acl1 line 5 extended deny ip any6 any6 log informational interval 300 (hitcnt=0) 0xffffffff
# access-list al_iga_to_sl line 2 extended permit tcp 10.1.1.0 255.255.255.224 range 1 10 10.2.1.0 255.255.255.0 informational interval 300 (hitcnt=0) 0xb5386dd9
p2 = re.compile(r'(?P<tabbed> +)?access-list +(?P<name>\S+) +line +(?P<entry>\d+) +extended +(?P<action>(permit|deny)) +(object-group (?P<svc_obj_group>\S+)|(?P<protocol>\S+)) +(host (?P<src_host>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|object-group +(?P<src_object_group>\S+)|(?P<src_any>any4|any6|any)|((?P<src_network>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) +(?P<src_mask>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}))|(object (?P<src_object>\S+)))( +(?P<src_port_op>eq|lt|neq|range) +(?P<src_port>\S+))?( +(?P<src_to_port>(?!host|object-group|any4|any6|any)[0-9a-zA-Z]+))? +(host (?P<dst_host>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|object-group +(?P<dst_object_group>\S+)|(?P<dst_any>any4|any6|any)|((?P<dst_network>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) +(?P<dst_mask>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}))|(object (?P<dst_object>\S+)))( +(?P<dst_port_op>eq|lt|neq|range) +(?P<dst_port>[0-9a-zA-Z]+))?( +(?P<dst_to_port>((?!log)\S+)))?( +log(?P<log_disable> +disable)?)?( +informational +interval +(?P<informational_interval>\d+))? +\(hitcnt=(?P<hitcnt>\d+)\) +(?P<acl_hash>0x[0-9a-fA-F]+)')
Copy link
Contributor

Choose a reason for hiding this comment

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

Please watch the line length. Try not to exceed 80-120 characters on each line

@GerriorL GerriorL requested review from Taarini and omehrabi August 12, 2022 20:45
Copy link
Contributor

@Taarini Taarini left a comment

Choose a reason for hiding this comment

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

Can you please address the review comments

@omehrabi omehrabi removed their request for review October 31, 2022 15:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants