You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scenario: Egerouter is set to allow for insecure connections, line 1200-1207
httpClient := &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
Certificates: certificates,
InsecureSkipVerify: true,
},
},
}
This is used in test scenarious such that non authenticated TLS is possible. When connecting an agent with true MIR-endorsed certificates, this configuration triggers a panic from the edgerouter, closing the Websocket.
The text was updated successfully, but these errors were encountered:
Scenario: Egerouter is set to allow for insecure connections, line 1200-1207
httpClient := &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
Certificates: certificates,
InsecureSkipVerify: true,
},
},
}
This is used in test scenarious such that non authenticated TLS is possible. When connecting an agent with true MIR-endorsed certificates, this configuration triggers a panic from the edgerouter, closing the Websocket.
The text was updated successfully, but these errors were encountered: