八卦跳过握手与相互 TLS
Gossip Skip Handshake vs mutual TLS
我在 hyperledger fabric 的余额转移示例中看到,以下设置跳过了 gossip 握手,因为我们没有进行相互 TLS
参考:https://github.com/hyperledger/fabric-samples/blob/release/balance-transfer/artifacts/base.yaml
# The following setting skips the gossip handshake since we are
# are not doing mutual TLS
- CORE_PEER_GOSSIP_SKIPHANDSHAKE=true
问题:双向TLS与跳过握手有什么关系?
这是一个旧的且已弃用的选项,自 v1.1 以来就不再使用。在进行握手时,如果启用了相互 TLS 的八卦也验证了 TLS 认证,这个选项暂时允许跳过它。现在,它已被弃用,不再使用。
我在 hyperledger fabric 的余额转移示例中看到,以下设置跳过了 gossip 握手,因为我们没有进行相互 TLS
参考:https://github.com/hyperledger/fabric-samples/blob/release/balance-transfer/artifacts/base.yaml
# The following setting skips the gossip handshake since we are
# are not doing mutual TLS
- CORE_PEER_GOSSIP_SKIPHANDSHAKE=true
问题:双向TLS与跳过握手有什么关系?
这是一个旧的且已弃用的选项,自 v1.1 以来就不再使用。在进行握手时,如果启用了相互 TLS 的八卦也验证了 TLS 认证,这个选项暂时允许跳过它。现在,它已被弃用,不再使用。