看起来经过特使后,源IP发生了变化。在阅读完这段代码后:https://www.envoyproxy.io/docs/envoy/latest/configuration/listeners/listener_filters/original_src_filter#example-listener-configuration,我尝试将下面的代码添加到端口80的侦听器中,该端口上无法建立连接。
listener_filters:
- name: envoy.filters.listener.original_src
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.listener.original_src.v3.OriginalSrc
mark: 123我在访问该侦听器上的任何端点后得到的错误:upstream connect error or disconnect/reset before headers. reset reason: connection failure
如何防止特使更改源ip,为什么会出现这个错误?
发布于 2020-11-04 01:43:37
请增加群集超时时间,然后重试。(在集群"connect_timeout"的定义中)
https://stackoverflow.com/questions/64324389
复制相似问题