Kconfig 1.2 KB

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