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

Support unknown protocol in arista_eos_show_interfaces_description #1540

Merged
merged 1 commit into from
Oct 6, 2023
Merged
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
@@ -1,6 +1,6 @@
Value PORT (\S+)
Value STATUS (up|down|admin\s+down)
Value PROTOCOL (up|down|lowerlayerdown|notpresent)
Value PROTOCOL (up|down|lowerlayerdown|notpresent|unknown)
Value DESCRIP (\S.*?)

Start
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ Et14 down notpresent
Ma1 down down Management
Po1 up up MLAG peer link
Po101 up up ServerRAD
Tu8 down unknown
Vl4094 up up MLAG local int
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ parsed_sample:
status: "up"
protocol: "up"
descrip: "ServerRAD"
- port: "Tu8"
status: "down"
protocol: "unknown"
descrip: ""
- port: "Vl4094"
status: "up"
protocol: "up"
Expand Down