0001 # SPDX-License-Identifier: GPL-2.0-only
0002 #
0003 # Configuration for 802.1Q VLAN support
0004 #
0005
0006 config VLAN_8021Q
0007 tristate "802.1Q/802.1ad VLAN Support"
0008 help
0009 Select this and you will be able to create 802.1Q VLAN interfaces
0010 on your Ethernet interfaces. 802.1Q VLAN supports almost
0011 everything a regular Ethernet interface does, including
0012 firewalling, bridging, and of course IP traffic. You will need
0013 the 'ip' utility in order to effectively use VLANs.
0014 See the VLAN web page for more information:
0015 <http://www.candelatech.com/~greear/vlan.html>
0016
0017 To compile this code as a module, choose M here: the module
0018 will be called 8021q.
0019
0020 If unsure, say N.
0021
0022 config VLAN_8021Q_GVRP
0023 bool "GVRP (GARP VLAN Registration Protocol) support"
0024 depends on VLAN_8021Q
0025 select GARP
0026 help
0027 Select this to enable GVRP end-system support. GVRP is used for
0028 automatic propagation of registered VLANs to switches.
0029
0030 If unsure, say N.
0031
0032 config VLAN_8021Q_MVRP
0033 bool "MVRP (Multiple VLAN Registration Protocol) support"
0034 depends on VLAN_8021Q
0035 select MRP
0036 help
0037 Select this to enable MVRP end-system support. MVRP is used for
0038 automatic propagation of registered VLANs to switches; it
0039 supersedes GVRP and is not backwards-compatible.
0040
0041 If unsure, say N.