Basic Network Options
This page describes K3s network configuration options, including configuration or replacement of Flannel, and configuring IPv6 or dualStack.
Flannel Options
Flannel is a lightweight provider of layer 3 network fabric that implements the Kubernetes Container Network Interface (CNI). It is what is commonly referred to as a CNI Plugin.
-
Flannel options can only be set on server nodes, and must be identical on all servers in the cluster.
-
The default backend for Flannel is
vxlan
. To enable encryption, use thewireguard-native
backend. -
Using
vxlan
on Rasperry Pi with recent versions of Ubuntu requires additional preparation. -
Using
wireguard-native
as the Flannel backend may require additional modules on some Linux distributions. Please see the WireGuard Install Guide for details. The WireGuard install steps will ensure the appropriate kernel modules are installed for your operating system. You must ensure that WireGuard kernel modules are available on every node, both servers and agents, before attempting to use the WireGuard Flannel backend.
CLI Flag and Value | Description |
---|---|
|
Apply masquerading rules to IPv6 traffic (default for IPv4). Only applies on dual-stack or IPv6-only clusters. Compatible with any Flannel backend other than |
|
Use node external IP addresses as the destination for Flannel traffic, instead of internal IPs. Only applies when --node-external-ip is set on a node. |
|
Use VXLAN to encapsulate the packets. May require additional kernel modules on Raspberry Pi. |
|
Use IP routes to pod subnets via node IPs. Requires direct layer 2 connectivity between all nodes in the cluster. |
|
Use WireGuard to encapsulate and encrypt network traffic. May require additional kernel modules. |
|
Use strongSwan IPSec via the |
|
Disable Flannel entirely. |
Version Gate
K3s no longer includes strongSwan |
Migrating from wireguard
or ipsec
to wireguard-native
The legacy wireguard
backend requires installation of the wg
tool on the host. This backend is not available in K3s v1.26 and higher, in favor of wireguard-native
backend, which directly interfaces with the kernel.
The legacy ipsec
backend requires installation of the swanctl
and charon
binaries on the host. This backend is not available in K3s v1.27 and higher, in favor of the wireguard-native
backend.
We recommend that users migrate to the new backend as soon as possible. The migration requires a short period of downtime while nodes come up with the new configuration. You should follow these two steps:
-
Update the K3s config on all server nodes. If using config files, the
/etc/rancher/k3s/config.yaml
should includeflannel-backend: wireguard-native
instead offlannel-backend: wireguard
orflannel-backend: ipsec
. If you are configuring K3s via CLI flags in the systemd unit, the equivalent flags should be changed. -
Reboot all nodes, starting with the servers.
Custom CNI
Start K3s with --flannel-backend=none
and install your CNI of choice. Most CNI plugins come with their own network policy engine, so it is recommended to set --disable-network-policy
as well to avoid conflicts. Some important information to take into consideration:
-
Canal
-
Calico
-
Cilium
Visit the Canal Docs website. Follow the steps to install Canal. Modify the Canal YAML so that IP forwarding is allowed in the container_settings
section, for example:
"container_settings": {
"allow_ip_forwarding": true
}
Apply the Canal YAML.
Ensure the settings were applied by running the following command on the host:
cat /etc/cni/net.d/10-canal.conflist
You should see that IP forwarding is set to true.
Follow the Calico CNI Plugins Guide. Modify the Calico YAML so that IP forwarding is allowed in the container_settings
section, for example:
"container_settings": {
"allow_ip_forwarding": true
}
Apply the Calico YAML.
Ensure the settings were applied by running the following command on the host:
cat /etc/cni/net.d/10-calico.conflist
You should see that IP forwarding is set to true.
Before running k3s-killall.sh
or k3s-uninstall.sh
, you must manually remove cilium_host
, cilium_net
and cilium_vxlan
interfaces. If you fail to do this, you may lose network connectivity to the host when K3s is stopped
ip link delete cilium_host
ip link delete cilium_net
ip link delete cilium_vxlan
Additionally, iptables rules for cilium should be removed:
iptables-save | grep -iv cilium | iptables-restore
ip6tables-save | grep -iv cilium | ip6tables-restore
Control-Plane Egress Selector configuration
K3s agents and servers maintain websocket tunnels between nodes that are used to encapsulate bidirectional communication between the control-plane (apiserver) and agent (kubelet and containerd) components. This allows agents to operate without exposing the kubelet and container runtime streaming ports to incoming connections, and for the control-plane to connect to cluster services when operating with the agent disabled. This functionality is equivalent to the Konnectivity service commonly used on other Kubernetes distributions, and is managed via the apiserver’s egress selector configuration.
The default mode is agent
. pod
or cluster
modes are recommended when running agentless servers, in order to provide the apiserver with access to cluster service endpoints in the absence of flannel and kube-proxy.
The egress selector mode may be configured on servers via the --egress-selector-mode
flag, and offers four modes:
-
disabled
: The apiserver does not use agent tunnels to communicate with kubelets or cluster endpoints. This mode requires that servers run the kubelet, CNI, and kube-proxy, and have direct connectivity to agents, or the apiserver will not be able to access service endpoints or performkubectl exec
andkubectl logs
. -
agent
(default): The apiserver uses agent tunnels to communicate with kubelets. This mode requires that the servers also run the kubelet, CNI, and kube-proxy, or the apiserver will not be able to access service endpoints. -
pod
: The apiserver uses agent tunnels to communicate with kubelets and service endpoints, routing endpoint connections to the correct agent by watching Nodes and Endpoints.
NOTE: This mode will not work when using a CNI that uses its own IPAM and does not respect the node’s PodCIDR allocation.cluster
oragent
mode should be used with these CNIs instead. -
cluster
: The apiserver uses agent tunnels to communicate with kubelets and service endpoints, routing endpoint connections to the correct agent by watching Pods and Endpoints. This mode has the highest portability across different cluster configurations, at the cost of increased overhead.
Dual-stack (IPv4 + IPv6) Networking
Version Gate
Experimental support is available as of v1.21.0+k3s1. |
Known Issue
Before 1.27, Kubernetes Issue #111695 causes the Kubelet to ignore the node IPv6 addresses if you have a dual-stack environment and you are not using the primary network interface for cluster traffic. To avoid this bug, use 1.27 or newer or add the following flag to both K3s servers and agents: --kubelet-arg="node-ip=0.0.0.0" # To proritize IPv4 traffic #OR --kubelet-arg="node-ip=::" # To proritize IPv6 traffic |
Dual-stack networking must be configured when the cluster is first created. It cannot be enabled on an existing cluster once it has been started as IPv4-only.
To enable dual-stack in K3s, you must provide valid dual-stack cluster-cidr
and service-cidr
on all server nodes. This is an example of a valid configuration:
--cluster-cidr=10.42.0.0/16,2001:cafe:42::/56 --service-cidr=10.43.0.0/16,2001:cafe:43::/112
Note that you may configure any valid cluster-cidr
and service-cidr
values, but the above masks are recommended. If you change the cluster-cidr
mask, you should also change the node-cidr-mask-size-ipv4
and node-cidr-mask-size-ipv6
values to match the planned pods per node and total node count. The largest supported service-cidr
mask is /12 for IPv4, and /112 for IPv6. Remember to allow ipv6 traffic if you are deploying in a public cloud.
When using IPv6 addresses that are not publicly routed, for example in the ULA range, you might want to add the --flannel-ipv6-masq
option to enable IPv6 NAT, as per default pods use their pod IPv6 address for outgoing traffic.
If you are using a custom CNI plugin, i.e. a CNI plugin other than Flannel, the additional configuration may be required. Please consult your plugin’s dual-stack documentation and verify if network policies can be enabled.
Known Issue
When defining cluster-cidr and service-cidr with IPv6 as the primary family, the node-ip of all cluster members should be explicitly set, placing node’s desired IPv6 address as the first address. By default, the kubelet always uses IPv4 as the primary address family. |
Single-stack IPv6 Networking
Version Gate
Available as of v1.22.9+k3s1 |
Known Issue
If your IPv6 default route is set by a router advertisement (RA), you will need to set the sysctl |
Single-stack IPv6 clusters (clusters without IPv4) are supported on K3s using the --cluster-cidr
and --service-cidr
flags. This is an example of a valid configuration:
--cluster-cidr=2001:cafe:42::/56 --service-cidr=2001:cafe:43::/112
When using IPv6 addresses that are not publicly routed, for example in the ULA range, you might want to add the --flannel-ipv6-masq
option to enable IPv6 NAT, as per default pods use their pod IPv6 address for outgoing traffic.
Nodes Without a Hostname
Some cloud providers, such as Linode, will create machines with "localhost" as the hostname and others may not have a hostname set at all. This can cause problems with domain name resolution. You can run K3s with the --node-name
flag or K3S_NODE_NAME
environment variable and this will pass the node name to resolve this issue.