2019-05-19 13:07:45 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2013-05-23 21:02:52 +00:00
|
|
|
#
|
|
|
|
# MPLS configuration
|
|
|
|
#
|
2015-03-03 19:10:23 -06:00
|
|
|
|
|
|
|
menuconfig MPLS
|
2015-03-10 16:37:59 +00:00
|
|
|
bool "MultiProtocol Label Switching"
|
2015-03-03 19:10:23 -06:00
|
|
|
default n
|
2020-06-14 01:50:22 +09:00
|
|
|
help
|
2015-03-03 19:10:23 -06:00
|
|
|
MultiProtocol Label Switching routes packets through logical
|
2015-03-09 12:54:48 +01:00
|
|
|
circuits. Originally conceived as a way of routing packets at
|
2015-03-03 19:10:23 -06:00
|
|
|
hardware speeds (before hardware was capable of routing ipv4 packets),
|
2015-03-09 12:54:48 +01:00
|
|
|
MPLS remains a simple way of making tunnels.
|
2015-03-03 19:10:23 -06:00
|
|
|
|
|
|
|
If you have not heard of MPLS you probably want to say N here.
|
|
|
|
|
|
|
|
if MPLS
|
|
|
|
|
2013-05-23 21:02:52 +00:00
|
|
|
config NET_MPLS_GSO
|
2015-03-10 16:37:59 +00:00
|
|
|
tristate "MPLS: GSO support"
|
2013-05-23 21:02:52 +00:00
|
|
|
help
|
|
|
|
This is helper module to allow segmentation of non-MPLS GSO packets
|
|
|
|
that have had MPLS stack entries pushed onto them and thus
|
|
|
|
become MPLS GSO packets.
|
2015-03-03 19:10:23 -06:00
|
|
|
|
2015-03-03 19:10:47 -06:00
|
|
|
config MPLS_ROUTING
|
2015-03-10 16:37:59 +00:00
|
|
|
tristate "MPLS: routing support"
|
2017-10-11 15:55:31 +02:00
|
|
|
depends on NET_IP_TUNNEL || NET_IP_TUNNEL=n
|
2019-06-12 11:50:37 +02:00
|
|
|
depends on PROC_SYSCTL
|
2020-06-14 01:50:22 +09:00
|
|
|
help
|
2015-03-03 19:10:47 -06:00
|
|
|
Add support for forwarding of mpls packets.
|
|
|
|
|
2015-07-21 10:43:53 +02:00
|
|
|
config MPLS_IPTUNNEL
|
|
|
|
tristate "MPLS: IP over MPLS tunnel support"
|
|
|
|
depends on LWTUNNEL && MPLS_ROUTING
|
2020-06-14 01:50:22 +09:00
|
|
|
help
|
2015-07-21 10:43:53 +02:00
|
|
|
mpls ip tunnel support.
|
|
|
|
|
2015-03-03 19:10:23 -06:00
|
|
|
endif # MPLS
|