I've setup a simplisti UDP load balancing as follow :
stream {
upstream dtls_udp_upstreams {
hash $remote_addr:remote_port;
server preprod.mycorp.com:5684;
}
server {
listen 5684 udp;
proxy_pass dtls_udp_upstreams;
proxy_responses 1;
}
}
I notice that the balancing is
Hi,
There is a draft[1] at the IETF about connection ID for DTLS . This
is a way to identify a "DTLS connection" by an ID instead of the
classical Ip address/port tuple. The objective is to reduce the need of
DTLS full handshake when client address/port change.
I would like to know if i