Skip to content

Commit

Permalink
Support unknown protocol in arista_eos_show_interfaces_description (n…
Browse files Browse the repository at this point in the history
…etworktocode#1540)

Co-authored-by: Mouse <[email protected]>
  • Loading branch information
2 people authored and cppmonkey committed Oct 25, 2023
1 parent 92a5d13 commit 4244c87
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
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

0 comments on commit 4244c87

Please sign in to comment.