Skip to content

Commit

Permalink
Merge pull request #810 from kernelkit/doc-ieee-group-forward
Browse files Browse the repository at this point in the history
Documentation of forwarding IEEE reserved group addresses
  • Loading branch information
jovatn authored Nov 8, 2024
2 parents e0458ca + 9103d31 commit 57b66ec
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ All notable changes to the project are documented in this file.
command examples for disabling LLDP and mDNS services, issue #786
- Updated OSPF documentation to include information on *global OSPF
settings* (`redistribution`, `explicit-router-id`, etc.), issue #812
- Added information on *forwarding of IEEE reserved group addresses*
to bridge section of networking documentation, issue #788

### Fixes
- Fix #685: DSA conduit interface not always detected, randomly causing
Expand Down
26 changes: 26 additions & 0 deletions doc/networking.md
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,32 @@ an IGMP/MLD fast-leave port.
[RFC3376]: https://www.rfc-editor.org/rfc/rfc3376.html
[RFC3810]: https://www.rfc-editor.org/rfc/rfc3810.html

#### Forwarding of IEEE Reserved Group Addresses

Addresses in range `01:80:C2:00:00:0X` are used by various bridge
signaling protocols, and are not forwarded by default. Still, it is
sometimes useful to let the bridge forward such packets, and Infix
supports this by specifying protocol names or the last address
*nibble* as decimal value `0..15`.

```
admin@example:/config/> edit interface br0 bridge
admin@example:/config/interface/br0/bridge/> set ieee-group-forward <?>
[0..15] List of IEEE link-local protocols to forward, e.g., STP, LLDP
dot1x 802.1X Port-Based Network Access Control.
lacp 802.3 Slow Protocols, e.g., LACP.
lldp 802.1AB Link Layer Discovery Protocol (LLDP).
stp Spanning Tree (STP/RSPT/MSTP).
admin@example:/config/interface/br0/bridge/> set ieee-group-forward
```

The following example configures bridge *br0* to forward LLDP packets.

```
admin@example:/config/interface/br0/bridge/> set ieee-group-forward lldp
admin@example:/config/interface/br0/bridge/>
```

### VLAN Interfaces

Creating a VLAN can be done in many ways. This section assumes VLAN
Expand Down

0 comments on commit 57b66ec

Please sign in to comment.