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

cisco_nxos add f-path vlan type #937

Merged
merged 2 commits into from
Jun 22, 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,7 +1,7 @@
Value PORT (\S+)
Value NAME (.*?)
Value STATUS (\S+)
Value VLAN (\d+|routed|trunk|--)
Value VLAN (\d+|routed|trunk|f-path|--)
Value DUPLEX (\S+)
Value SPEED (\S+)
Value TYPE (\S+(\s\S+)*)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ Eth1/10 -- channelDo 1 full 10G Fabric Exte
Eth1/11 -- channelDo 1 full 10G Fabric Exte
Eth1/12 -- channelDo 1 full 10G Fabric Exte
Eth1/13 upk N2232PP-651-10 connected 1 full 10G Fabric Exte
Eth1/14 FP-port connected f-path full 10G 10Gbase-SR
Eth1/39 "FEX151" connected 1 full 10G Fabric Extender Transceiver
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,13 @@ parsed_sample:
duplex: "full"
speed: "10G"
type: "Fabric Exte"
- port: "Eth1/14"
name: "FP-port"
status: "connected"
vlan: "f-path"
duplex: "full"
speed: "10G"
type: "10Gbase-SR"
- port: "Eth1/39"
name: "\"FEX151\""
status: "connected"
Expand Down