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

Adds monitoring port for show interfaces status #928

Merged
merged 1 commit into from
May 28, 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 NAME (.+?)
Value STATUS (err-disabled|disabled|connected|notconnect|inactive|up|down)
Value STATUS (err-disabled|disabled|connected|notconnect|inactive|up|down|monitoring)
Value VLAN (\S+)
Value DUPLEX (\S+)
Value SPEED (\S+)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ Gi1/0/14 Half Duplex 2950-S notconnect 16 a-half auto Not Present
Gi1/0/15 Multi Space to the notconnect 16 a-half auto 10/100BaseTX
Gi1/0/16 Multi Space to the err-disabled 16 a-half auto 10/100BaseTX
Gi1/0/17 Multi Space disabled 16 a-half auto 10/100BaseTX
Gi1/0/18 Monitoring Port monitoring routed a-full auto 10/100/1000BaseT
Fa1/6 test notconnect 1 auto auto 10/100BaseTX
Po1 ethchl connected trunk a-full a-1000
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,14 @@ parsed_sample:
speed: "auto"
type: "10/100BaseTX"
fc_mode: ""
- port: "Gi1/0/18"
name: "Monitoring Port"
status: "monitoring"
vlan: "routed"
duplex: "a-full"
speed: "auto"
type: "10/100/1000BaseT"
fc_mode: ""
- port: "Fa1/6"
name: "test"
status: "notconnect"
Expand Down