Route traffic error

Hi,

I’m looking to do something kinda simple but without success. So maybe that’s not possible.

listen juno_rpc
    mode tcp
    bind *:3201  ssl crt /etc/ssl/certs/fullchain.pem  ca-file /etc/ssl/certs/chain.pem verify optional
    balance roundrobin
    option tcplog

    default-server check fall 2 rise 2
    server strange_love rpc.juno.strange.love:443
    server itstaker rpc.juno.strange.love:443
    server reece juno-rpc.reece.sh:443
    server whispernode rpc-juno.whispernode.com:443

#---------------------------------------------------------------------
# main frontend which proxys to the backends
#---------------------------------------------------------------------
frontend main
    bind *:5000 ssl crt /etc/ssl/certs/fullchain.pem  ca-file /etc/ssl/certs/chain.pem verify optional
    default_backend             app

#---------------------------------------------------------------------
# round robin balancing between the various backends
#---------------------------------------------------------------------
backend app
    server strange_love rpc.juno.strange.love:443
    server itstaker rpc.juno.strange.love:443
    server reece juno-rpc.reece.sh:443
    server whispernode rpc-juno.whispernode.com:443

any of thoses config is working, and i do not understand why.

beside that, this is working as well

listen cerberus
    mode http
    option httpchk


    bind *:9200 ssl crt fullchain.pem  ca-file chain.pem verify optional

    default-server check fall 2 rise 2 ssl verify none

    server cerberus_alpha cerberus-alpha.ether-source.fr:9200
    server cerberus_beta cerberus-beta.ether-source.fr:9200
    server cerberus_gamma cerberus-gamma.ether-source.fr:9200

the main difference is like one is local network not the other one.

I tried then somthing stupid, to redirect my haproxy_server from :444 to www.google.com, without success.

What important part of network I’m missing ?


Jan 21 22:50:10 481j haproxy[16144]: 82.64.41.31:29437 [21/Jan/2023:22:50:10.064] main~ app/strange_love 304/22/435 0 -- 2/1/0/0/0 0/0
Jan 21 22:50:11 481j haproxy[16144]: 82.64.41.31:29438 [21/Jan/2023:22:50:11.631] main~ app/itstaker 56/27/164 0 -- 2/1/0/0/0 0/0
Jan 21 22:50:16 481j haproxy[16144]: 82.64.41.31:29439 [21/Jan/2023:22:50:16.578] main~ app/reece 55/8/127 816 -- 2/1/0/0/0 0/0
Jan 21 22:50:17 481j haproxy[16144]: 82.64.41.31:29440 [21/Jan/2023:22:50:17.075] main~ app/whispernode 57/8/130 816 -- 2/1/0/0/0 0/0
Jan 21 22:53:07 481j haproxy[16144]: 82.64.41.31:29445 [21/Jan/2023:22:53:06.953] main~ app/strange_love 57/27/166 0 -- 2/1/0/0/0 0/0
Jan 21 22:53:08 481j haproxy[16144]: 82.64.41.31:29446 [21/Jan/2023:22:53:08.249] main~ app/itstaker 56/27/109 0 SD 2/1/0/0/0 0/0
Jan 21 22:53:13 481j haproxy[16144]: 82.64.41.31:29447 [21/Jan/2023:22:53:13.505] main~ app/reece 55/8/128 816 -- 2/1/0/0/0 0/0
Jan 21 22:53:14 481j haproxy[16144]: 82.64.41.31:29448 [21/Jan/2023:22:53:14.030] main~ app/whispernode 57/7/130 816 -- 2/1/0/0/0 0/0

Any help is welcome