Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Sam Ravnborg | 6a2e9b7 | 2005-07-11 21:13:56 -0700 | [diff] [blame] | 2 | # |
| 3 | # Configuration for 802.1Q VLAN support |
| 4 | # |
| 5 | |
| 6 | config VLAN_8021Q |
Patrick McHardy | 8ad227f | 2013-04-19 02:04:31 +0000 | [diff] [blame] | 7 | tristate "802.1Q/802.1ad VLAN Support" |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 8 | help |
Sam Ravnborg | 6a2e9b7 | 2005-07-11 21:13:56 -0700 | [diff] [blame] | 9 | Select this and you will be able to create 802.1Q VLAN interfaces |
Yegor Yefremov | 2fa053a | 2014-01-20 10:49:39 +0100 | [diff] [blame] | 10 | on your Ethernet interfaces. 802.1Q VLAN supports almost |
| 11 | everything a regular Ethernet interface does, including |
| 12 | firewalling, bridging, and of course IP traffic. You will need |
| 13 | the 'ip' utility in order to effectively use VLANs. |
| 14 | See the VLAN web page for more information: |
Sam Ravnborg | 6a2e9b7 | 2005-07-11 21:13:56 -0700 | [diff] [blame] | 15 | <http://www.candelatech.com/~greear/vlan.html> |
| 16 | |
| 17 | To compile this code as a module, choose M here: the module |
| 18 | will be called 8021q. |
| 19 | |
| 20 | If unsure, say N. |
Patrick McHardy | 70c03b4 | 2008-07-05 21:26:57 -0700 | [diff] [blame] | 21 | |
| 22 | config VLAN_8021Q_GVRP |
| 23 | bool "GVRP (GARP VLAN Registration Protocol) support" |
| 24 | depends on VLAN_8021Q |
| 25 | select GARP |
| 26 | help |
| 27 | Select this to enable GVRP end-system support. GVRP is used for |
| 28 | automatic propagation of registered VLANs to switches. |
| 29 | |
| 30 | If unsure, say N. |
David Ward | 86fbe9b | 2013-02-08 17:17:07 +0000 | [diff] [blame] | 31 | |
| 32 | config VLAN_8021Q_MVRP |
| 33 | bool "MVRP (Multiple VLAN Registration Protocol) support" |
| 34 | depends on VLAN_8021Q |
| 35 | select MRP |
| 36 | help |
| 37 | Select this to enable MVRP end-system support. MVRP is used for |
| 38 | automatic propagation of registered VLANs to switches; it |
| 39 | supersedes GVRP and is not backwards-compatible. |
| 40 | |
| 41 | If unsure, say N. |