HAProxy IPv6 para o problema do IPv4

2

Eu configurei um nó HAProxy ver 1.5.3 no Ubuntu 14.04. O servidor Ubuntu tem 1 nic. O nic tem um endereço IPv6 e um endereço IPv4. O IPv6 escuta na porta 80 para conexões de entrada de internet. O servidor da Web é instalado em uma máquina Windows IIS separada na mesma VLAN com um endereço IPv4. Sem firewall. Pela Internet, posso conectar na porta 80 ao endereço IPV6, o que é bom. As estatísticas do HAProxy mostram que o servidor web de backend está ok Mas ainda não consigo navegar no site no servidor IPv4 através do HAPRoxy. Quando eu abro meu webbrowser eu recebo um erro no IE: "HTTP 400 Bad Request" Eu reinstalei o Ubuntu, não ajudou. Estou puxando meu cabelo para isso. Alguém por favor ajude.

Aqui está minha configuração:

global
        log /dev/log    local0
        log /dev/log    local1 notice
        chroot /var/lib/haproxy
        stats socket /run/haproxy/admin.sock mode 660 level admin
        stats timeout 30s
        user haproxy
        group haproxy
        daemon

        # Default SSL material locations
        ca-base /etc/ssl/certs
        crt-base /etc/ssl/private

        # Default ciphers to use on SSL-enabled listening sockets.
        # For more information, see ciphers(1SSL).
       #  ssl-default-bind-ciphers kEECDH+aRSA+AES:kRSA+AES:+AES256:RC4-SHA:!kEDH:!LOW:!EXP:!MD5:!aNULL:!eNULL

defaults
        log     global
        mode    http
        option  httplog
        option  dontlognull
        timeout connect 5000
        timeout client  50000
        timeout server  50000
        errorfile 400 /etc/haproxy/errors/400.http
        errorfile 403 /etc/haproxy/errors/403.http
        errorfile 408 /etc/haproxy/errors/408.http
        errorfile 500 /etc/haproxy/errors/500.http
        errorfile 502 /etc/haproxy/errors/502.http
        errorfile 503 /etc/haproxy/errors/503.http
        errorfile 504 /etc/haproxy/errors/504.http

frontend localnodes
    bind 0::0:80
    mode http
    default_backend nodes

backend nodes
    mode http
    balance roundrobin
    # option forwardfor
    # http-request set-header X-Forwarded-Port %[dst_port]
    # http-request add-header X-Forwarded-Proto https if { ssl_fc }
    # option httpchk HEAD / HTTP/1.1\r\nHost:localhost
    server web01 192.168.40.100:80 check

listen stats *:1936
    stats enable
    stats uri /
    stats hide-version
    stats auth someuser:password
    
por Marcel Rond 16.05.2015 / 00:18

0 respostas

Tags