NodeBalancer UDP

Are they're plans to expand the NodeBalancer's capabilities to handle UDP traffic.

1 Reply

Hello mgaydash, This is an alternative, self managed solution.

  1. Install Nginx on the system.
  2. Create an Nginx configuration file and add the following lines to it:

upstream backend {
server <backend_server_ip>:<port>;
}</port></backend_server_ip>

server {
listen <port> udp;
proxy_pass backend;
}</port>

  1. Replace the <backend_server_ip> and <port> with the IP address and port of the backend server.</port></backend_server_ip>

  2. Restart the Nginx server.

  3. Test the load balancer by sending UDP packets to the server.

~ Andy | NexusPIPE

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct