Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Configuration for 802.1Q VLAN support
  4. #
  5. config VLAN_8021Q
  6. tristate "802.1Q/802.1ad VLAN Support"
  7. help
  8. Select this and you will be able to create 802.1Q VLAN interfaces
  9. on your Ethernet interfaces. 802.1Q VLAN supports almost
  10. everything a regular Ethernet interface does, including
  11. firewalling, bridging, and of course IP traffic. You will need
  12. the 'ip' utility in order to effectively use VLANs.
  13. See the VLAN web page for more information:
  14. <http://www.candelatech.com/~greear/vlan.html>
  15. To compile this code as a module, choose M here: the module
  16. will be called 8021q.
  17. If unsure, say N.
  18. config VLAN_8021Q_GVRP
  19. bool "GVRP (GARP VLAN Registration Protocol) support"
  20. depends on VLAN_8021Q
  21. select GARP
  22. help
  23. Select this to enable GVRP end-system support. GVRP is used for
  24. automatic propagation of registered VLANs to switches.
  25. If unsure, say N.
  26. config VLAN_8021Q_MVRP
  27. bool "MVRP (Multiple VLAN Registration Protocol) support"
  28. depends on VLAN_8021Q
  29. select MRP
  30. help
  31. Select this to enable MVRP end-system support. MVRP is used for
  32. automatic propagation of registered VLANs to switches; it
  33. supersedes GVRP and is not backwards-compatible.
  34. If unsure, say N.