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

Fixes #1043 Update arista_eos_show_interfaces_description.textfsm #1044

Merged
merged 2 commits into from
Dec 15, 2021
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)
Value PROTOCOL (up|down|lowerlayerdown|notpresent)
Value DESCRIP (\S.*?)

Start
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Et9.999 down lowerlayerdown
Et10 up up ThiS iS a TeSt DeScriPtiON
Et11 up up ThiS iS a TeSt DeScriPtiON
Et12 up up ThiS iS a TeSt DeScriPtiON
Et13 down notpresent This IS a TesT DeScrIption
Et14 down notpresent
Ma1 down down Management
Po1 up up MLAG peer link
Po101 up up ServerRAD
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ parsed_sample:
status: "up"
protocol: "up"
descrip: "ThiS iS a TeSt DeScriPtiON"
- port: "Et13"
status: "down"
protocol: "notpresent"
descrip: "This IS a TesT DeScrIption"
- port: "Et14"
status: "down"
protocol: "notpresent"
descrip: ""
- port: "Ma1"
status: "down"
protocol: "down"
Expand Down