Skip to main content

Rules and Priorities

A router is in charge of connecting incoming requests to the services that can handle them. In the process, routers may use pieces of middleware to update the request, or act before forwarding the request to the service.

Similarly to TCP, as UDP is the transport layer, there is no concept of a request, so there is no notion of an URL path prefix to match an incoming UDP packet with. Furthermore, as there is no good TLS support at the moment for multiple hosts, there is no Host SNI notion to match against either. Therefore, there is no criterion that could be used as a rule to match incoming packets in order to route them. So UDP routers at this time are pretty much only load-balancers in one form or another.

tip

UDP routers can only target UDP services (and not HTTP or TCP services).

Sessions and timeout

Even though UDP is connectionless (and because of that), the implementation of an UDP router in Traefik Hub relies on what we (and a couple of other implementations) call a session. It means that some state is kept about an ongoing communication between a client and a backend, notably so that the proxy knows where to forward a response packet from a backend.

As expected, a timeout is associated to each of these sessions, so that they get cleaned out if they go through a period of inactivity longer than a given duration.

Timeout can be configured using the entryPoints.name.udp.timeout option as described under EntryPoints

EntryPoints

If not specified, UDP routers will accept packets from all defined (UDP) EntryPoints. If one wants to limit the router scope to a set of EntryPoints, one should set the entryPoints option.

Configuration Example

apiVersion: traefik.io/v1alpha1
kind: IngressRouteUDP
metadata:
name: router-1
spec:
# By default, IngressRouteUDP listens to all UDP entry points if 'entryPoints' is not specified.
routes:
- services:
- name: service-1
port: 1234 # Replace with your service port

Services

There must be one (and only one) UDP service referenced per UDP router. Services are the target for the router.