我有haproxy在通过与两个httpd服务器的通信进行ssl传递。我想将客户端的源IP发送到httpd服务器。 我尝试了forward选项,但是没有用。
Haproxy版本为1.5.18,配置如下:
frontend localhttps
bind *:443
mode tcp
option tcplog
option forwardfor
default_backend httpsnodes
backend httpsnodes
mode tcp
option tcplog
balance source
cookie SERVERID insert indirect
option ssl-hello-chk
option forwardfor
server <host1> <ip1> cookie 01 check
server <host2> <ip2> cookie 02 check