Re: tcp stream load balancer not working on Oracle Linux 7.5

2019-05-09 Thread brendan.do...@oracle.com
Totally  a typo, but fitting :) On 09/05/2019 01:06, Patrick wrote: On 2019-05-08 15:22, Brendan Doyle wrote: I switched to using iperf, and it all seems to be working fin now. ^ Ha! I see what you did there

Re: tcp stream load balancer not working on Oracle Linux 7.5

2019-05-08 Thread Patrick
On 2019-05-08 15:22, Brendan Doyle wrote: > I switched to using iperf, and it all seems to be working fin now. ^ Ha! I see what you did there | ___ nginx mailing

Re: tcp stream load balancer not working on Oracle Linux 7.5

2019-05-08 Thread Brendan Doyle
Ah yes, I should have paid more attention to the tcpdump output. I switched to using iperf, and it all seems to be working fin now. Thanks On 08/05/2019 02:24, Patrick wrote: On 2019-05-07 23:26, Brendan Doyle wrote: I'm trying to get a basic tcp load balancer working on OL : ... # nmap -p 500

Re: tcp stream load balancer not working on Oracle Linux 7.5

2019-05-07 Thread Patrick
On 2019-05-07 23:26, Brendan Doyle wrote: > I'm trying to get a basic tcp load balancer working on OL : > ... > # nmap -p 5000 10.129.87.162 This is probably not working as you expect because the default scan for nmap is a SYN scan -- since the TCP handshake is not complete, why would nginx connec

tcp stream load balancer not working on Oracle Linux 7.5

2019-05-07 Thread Brendan Doyle
Hi, I'm trying to get a basic tcp load balancer working on OL : cat /etc/oracle-release Oracle Linux Server release 7.5 My config is very basic: stream {     upstream backend_stream {     server 10.129.87.160:5000;     server 10.129.87.120:5000;     }     s