outgoing request from server over UDP with Req-URI in the form sip:user@host:port was transformed into sip:user@host:port;transport=udp. This caused application failure on the other side, which is doing a lookup based on the exact URI value, and is not expecting a transport parameter.
For both issues, @kostyantyn.nosach suggested to set "terminateTlsTraffic=false" and "internalTransport=tcp" as a workaround. This resulted in:
TLS not terminated for HTTPS traffic, which was not desired
incoming UDP traffic also turned into TCP between LB and server, which may or may not be beneficial
outgoing request from server over UDP with Req-URI in the form
sip:user@host:port
was transformed intosip:user@host:port;transport=udp
. This caused application failure on the other side, which is doing a lookup based on the exact URI value, and is not expecting a transport parameter.For both issues, @kostyantyn.nosach suggested to set "terminateTlsTraffic=false" and "internalTransport=tcp" as a workaround. This resulted in: