Flannel may be paired with several different backends. Once set, the backend should not be changed at runtime.
VXLAN is the recommended choice. host-gw is recommended for more experienced users who want the performance improvement and whose infrastructure support it (typically it can't be used in cloud environments). UDP is suggested for debugging only or for very old kernels that don't support VXLAN.
In case firewalld
is enabled on the node the port used by the backend needs to be enabled with firewall-cmd
:
firewall-cmd --permanent --zone=public --add-port=[port]/udp
For more information on configuration options for Tencent see TencentCloud VPC Backend for Flannel
Use in-kernel VXLAN to encapsulate the packets.
Type and options:
Type
(string):vxlan
VNI
(number): VXLAN Identifier (VNI) to be used. On Linux, defaults to 1. On Windows should be greater than or equal to 4096.Port
(number): UDP port to use for sending encapsulated packets. On Linux, defaults to kernel default, currently 8472, but on Windows, must be 4789.GBP
(Boolean): Enable VXLAN Group Based Policy. Defaults tofalse
. GBP is not supported on WindowsDirectRouting
(Boolean): Enable direct routes (likehost-gw
) when the hosts are on the same subnet. VXLAN will only be used to encapsulate packets to hosts on different subnets. Defaults tofalse
. DirectRouting is not supported on Windows.MTU
(number): Desired MTU for the outgoing packets if not defined the MTU of the external interface is used.MacPrefix
(String): Only use on Windows, set to the MAC prefix. Defaults to0E-2A
.
Starting with Ubuntu 21.10, vxlan support on Raspberry Pi has been moved into a separate kernel module.
sudo apt install linux-modules-extra-raspi
Use host-gw to create IP routes to subnets via remote machine IPs. Requires direct layer2 connectivity between hosts running flannel.
host-gw provides good performance, with few dependencies, and easy set up.
Type:
Type
(string):host-gw
Use in-kernel WireGuard to encapsulate and encrypt the packets.
Type:
Type
(string):wireguard
PSK
(string): Optional. The pre shared key to use. Usewg genpsk
to generate a key.ListenPort
(int): Optional. The udp port to listen on. Default is51820
.ListenPortV6
(int): Optional. The udp port to listen on for ipv6. Default is51821
.MTU
(number): Desired MTU for the outgoing packets if not defined the MTU of the external interface is used.Mode
(string): Optional.- separate - Use separate wireguard tunnels for ipv4 and ipv6 (default)
- auto - Single wireguard tunnel for both address families; autodetermine the preferred peer address
- ipv4 - Single wireguard tunnel for both address families; use ipv4 for the peer addresses
- ipv6 - Single wireguard tunnel for both address families; use ipv6 for the peer addresses
PersistentKeepaliveInterval
(int): Optional. Default is 0 (disabled).
If no private key was generated before the private key is written to /run/flannel/wgkey
. You can use environment WIREGUARD_KEY_FILE
to change this path.
The static names of the interfaces are flannel-wg
and flannel-wg-v6
. WireGuard tools like wg show
can be used to debug interfaces and peers.
Users of kernels < 5.6 need to install an additional Wireguard package.
Use UDP only for debugging if your network and kernel prevent you from using VXLAN or host-gw.
Type and options:
Type
(string):udp
Port
(number): UDP port to use for sending encapsulated packets. Defaults to 8285.
The following options are experimental and unsupported at this time.
Alloc performs subnet allocation with no forwarding of data packets.
Type:
Type
(string):alloc
Use TencentCloud VPC to create IP routes in a TencentCloud VPC route table when running in an TencentCloud VPC. This mitigates the need to create a separate flannel interface.
Requirements:
- Running on an CVM instance that is in an TencentCloud VPC.
- Permission require
accessid
andkeysecret
.Type
(string):tencent-vpc
AccessKeyID
(string): API access key ID. Can also be configured with environment ACCESS_KEY_ID.AccessKeySecret
(string): API access key secret. Can also be configured with environment ACCESS_KEY_SECRET.
Route Limits: TencentCloud VPC limits the number of entries per route table to 50.
Use in-kernel IPIP to encapsulate the packets.
IPIP kind of tunnels is the simplest one. It has the lowest overhead, but can incapsulate only IPv4 unicast traffic, so you will not be able to setup OSPF, RIP or any other multicast-based protocol.
Type:
Type
(string):ipip
DirectRouting
(Boolean): Enable direct routes (likehost-gw
) when the hosts are on the same subnet. IPIP will only be used to encapsulate packets to hosts on different subnets. Defaults tofalse
.
Note that there may exist two ipip tunnel device tunl0
and flannel.ipip
, this is expected and it's not a bug.
tunl0
is automatically created per network namespace by ipip kernel module on modprobe ipip module. It is the namespace default IPIP device with attributes local=any and remote=any.
When receiving IPIP protocol packets, kernel will forward them to tunl0 as a fallback device if it can't find an option whose local/remote attribute matches their src/dst ip address more precisely.
flannel.ipip
is created by flannel to achieve one to many ipip network.
Use in-kernel IPSec to encapsulate and encrypt the packets.
Strongswan is used at the IKEv2 daemon. A single pre-shared key is used for the initial key exchange between hosts and then Strongswan ensures that keys are rotated at regular intervals.
Type:
Type
(string):ipsec
PSK
(string): Required. The pre shared key to use. It needs to be at least 96 characters long. One method for generating this key is to rundd if=/dev/urandom count=48 bs=1 status=none | xxd -p -c 48
UDPEncap
(Boolean): Optional, defaults to false. Forces the use UDP encapsulation of packets which can help with some NAT gateways.ESPProposal
(string): Optional, defaults toaes128gcm16-sha256-prfsha256-ecp256
. Change this string to choose another ESP Proposal.
Hint: Add rules to your firewall: Open ports 50 (for ESP protocol), UDP 500 (for IKE, to manage encryption keys) and UDP 4500 (for IPSEC NAT-Traversal mode).
Logging
- When flannel is run from a container, the Strongswan tools are installed.
swanctl
can be used for interacting with the charon and it provides a logs command. - Charon logs are also written to the stdout of the flannel process.
Troubleshooting
ip xfrm state
can be used to interact with the kernel's security association database. This can be used to show the current security associations (SA) and whether a host is successfully establishing ipsec connections to other hosts.ip xfrm policy
can be used to show the installed policies. Flannel installs three policies for each host it connects to.
Flannel will not restore policies that are manually deleted (unless flannel is restarted). It will also not delete stale policies on startup. They can be removed by rebooting your host or by removing all ipsec state with ip xfrm state flush && ip xfrm policy flush
and restarting flannel.