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
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
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
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
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