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

T7254: op-mode: Add spanning-tree op-mode commands #4422

Open
wants to merge 5 commits into
base: current
Choose a base branch
from

Conversation

l0crian1
Copy link
Contributor

@l0crian1 l0crian1 commented Mar 28, 2025

Change summary

This PR will add missing commands for spanning-tree. The following commands are added:

show bridge spanning-tree
show bridge spanning-tree detail
show bridge \<interface> spanning-tree
show bridge \<interface> spanning-tree detail

Example config:

set interfaces bridge br0 member interface eth2
set interfaces bridge br1 enable-vlan
set interfaces bridge br1 member interface eth3 allowed-vlan '50-100'
set interfaces bridge br1 member interface eth3 native-vlan '25'

Output Examples:

admin@GK41:~$ show bridge spanning-tree
--------------------------------------------------------------------------------
Bridge interface br0 (DOWN):

Spanning Tree is Disabled
Bridge ID 32:35:e4:d1:4c:05, Priority 32768
Root ID 32:35:e4:d1:4c:05, Priority 32768 (This bridge is root)
VLANs are Disabled, Protocol 802.1Q

Interface    State     BPDU_Guard    Root_Guard    Learning
-----------  --------  ------------  ------------  ----------
eth2         Disabled  Disabled      Disabled      Enabled

--------------------------------------------------------------------------------
Bridge interface br1 (UP):

Spanning Tree is Disabled
Bridge ID 72:5f:d6:8b:20:5f, Priority 32768
Root ID 72:5f:d6:8b:20:5f, Priority 32768 (This bridge is root)
VLANs are Enabled, Protocol 802.1Q

Interface    State       BPDU_Guard    Root_Guard    Learning
-----------  ----------  ------------  ------------  ----------
eth3         Forwarding  Disabled      Disabled      Enabled
admin@GK41:~$ show bridge br1 spanning-tree
--------------------------------------------------------------------------------
Bridge interface br1 (UP):

Spanning Tree is Disabled
Bridge ID 72:5f:d6:8b:20:5f, Priority 32768
Root ID 72:5f:d6:8b:20:5f, Priority 32768 (This bridge is root)
VLANs are Enabled, Protocol 802.1Q

Interface    State       BPDU_Guard    Root_Guard    Learning
-----------  ----------  ------------  ------------  ----------
eth3         Forwarding  Disabled      Disabled      Enabled
admin@GK41:~$ show bridge br1 spanning-tree detail
--------------------------------------------------------------------------------
Bridge interface br1 (UP):

Spanning Tree is Disabled
Bridge ID 72:5f:d6:8b:20:5f, Priority 32768
Root ID 72:5f:d6:8b:20:5f, Priority 32768 (This bridge is root)
VLANs are Enabled, Protocol 802.1Q

 Interface            | eth3
 State                | Forwarding
 Pathcost             | 100
 BPDU_Guard           | Disabled
 Root_Guard           | Disabled
 Learning             | Enabled
 Neighbor_Suppression | Disabled
 Q-in-Q               | Disabled
 Port_Isolation       | Disabled
 Allowed VLANs        | 50-100
 Native VLAN          | 25
{
    "stp": [
        {
            "bridge_name": "br0",
            "up_state": "UP",
            "priority": 32768,
            "vlan_filtering": "Disabled",
            "vlan_protocol": "802.1Q",
            "bridge_id": [
                "8000",
                "96:ae:39:c4:52:05"
            ],
            "root_id": [
                "8000",
                "96:ae:39:c4:52:05"
            ],
            "stp_state": "Disabled",
            "mcast_snooping": "Disabled",
            "rxbytes": 7236098,
            "rxpackets": 62713,
            "rxerrors": 0,
            "rxdropped": 0,
            "rxover_errors": 0,
            "rxmulticast": 62713,
            "txbytes": 1006,
            "txpackets": 9,
            "txerrors": 0,
            "txdropped": 0,
            "txcarrier_errors": 0,
            "txcollosions": 0,
            "members": [
                {
                    "interface": "eth0",
                    "state": "Forwarding",
                    "mtu": 1500,
                    "pathcost": 100,
                    "bpduguard": "Disabled",
                    "rootguard": "Disabled",
                    "mac_learning": "Enabled",
                    "neigh_suppress": "Disabled",
                    "vlan_tunnel": "Disabled",
                    "isolated": "Disabled",
                    "allowed_vlans": "none",
                    "native_vlan": 1
                },
                {
                    "interface": "eth2",
                    "state": "Forwarding",
                    "mtu": 1500,
                    "pathcost": 100,
                    "bpduguard": "Disabled",
                    "rootguard": "Disabled",
                    "mac_learning": "Enabled",
                    "neigh_suppress": "Disabled",
                    "vlan_tunnel": "Disabled",
                    "isolated": "Disabled",
                    "allowed_vlans": "none",
                    "native_vlan": 1
                }
            ]
        }
    ]
}

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Code style update (formatting, renaming)
  • Refactoring (no functional changes)
  • Migration from an old Vyatta component to vyos-1x, please link to related PR inside obsoleted component
  • Other (please describe):

Related Task(s)

https://vyos.dev/T7254

Related PR(s)

How to test / Smoketest result

Checklist:

  • I have read the CONTRIBUTING document
  • have linked this PR to one or more Phabricator Task(s)
  • I have run the components SMOKETESTS if applicable
  • My commit headlines contain a valid Task id
  • My change requires a change to the documentation
  • I have updated the documentation accordingly

l0crian1 added 2 commits March 28, 2025 14:34
Created stp.py to create output for spanning-tree info
Modified show-bridge.xml.in to add:
    show bridge spanning-tree
    show bridge spanning-tree detail
    show bridge <interface> spanning-tree
    show bridge <interface> spanning-tree detail
Added stp.py to create output for spanning-tree info
Modified op-mode-definitions\show-bridge.xml.in to add these commands:
    show bridge spanning-tree
    show bridge spanning-tree detail
    show bridge <interface> spanning-tree
    show bridge <interface> spanning-tree detail
@l0crian1 l0crian1 requested a review from a team as a code owner March 28, 2025 20:12
@l0crian1 l0crian1 requested review from dmbaturin, sarthurdev, jestabro, sever-sever and c-po and removed request for a team March 28, 2025 20:12
Copy link

github-actions bot commented Mar 28, 2025


PR title does not match the required format

@c-po
Copy link
Member

c-po commented Mar 29, 2025

Could you please extend the PR message with an output of the RAW JSON data, too?

@l0crian1
Copy link
Contributor Author

Could you please extend the PR message with an output of the RAW JSON data, too?

Sure!

Copy link
Member

@c-po c-po left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice addition!

I would like to request also inly querying an individual bridge: show bridge spanning-tree br0 [detail] with an optional detail argument, too.

l0crian1 and others added 2 commits March 30, 2025 15:23
Updated language of amRoot to " (This bridge is the root)"

Co-authored-by: Christian Breunig <[email protected]>
Updated language of "VLANs are enabled/disabled" to "VLANs enabled/disabled"

Co-authored-by: Christian Breunig <[email protected]>
Copy link
Member

@c-po c-po left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested locally and works as expected. It‘s a very nice addition. LGTM

Commits should be squashed and merged as suggestions got committed.

Modified op-mode-standardized.json
@l0crian1
Copy link
Contributor Author

Sorry, I had to commit an update. I realized I didn't update data/op-mode-standardized.json with the new script since I allow raw output.

Copy link

CI integration 👍 passed!

Details

CI logs

  • CLI Smoketests (no interfaces) 👍 passed
  • CLI Smoketests (interfaces only) 👍 passed
  • Config tests 👍 passed
  • RAID1 tests 👍 passed
  • TPM tests 👍 passed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

Successfully merging this pull request may close these issues.

2 participants