qdeconinck / mp-quic

Please read https://multipath-quic.org/2017/12/09/artifacts-available.html to figure out how to setup the code.
MIT License
176 stars 71 forks source link

ProofInvalid #18

Closed BoogalooXiang closed 3 years ago

BoogalooXiang commented 3 years ago

Hi, I tested go run main.go -bind ":8088" on a terminal and go run client/main.go https://localhost:8088 on another terminal I got the error:

Closing session with error:ProofInvalid Connection fec6298ed2bab059 closed panic: Get https://localhost:8088/demo/tiles: ProofInvalid

I have the _id_rsa, idrsa.pub and _authorizedkeys file in ~/.ssh I read the README.md, it seems that the privkey.pem and fullchain.pem file in invalid So I need to get a new privkey.pem and fullchain.pem in example file right? : -)

ytxing commented 3 years ago

Hi, I got the same problem. Do you solve it? How? @BoogalooXiang

Nice day:)

BoogalooXiang commented 3 years ago

Hi, I think you can skip the verification.

Import ( “crypto/tls” )

hclient := &http.Client{ Transport: &h2quic.RoundTripper{QuicConfig: quicConfig, TLSClientConfig: &tls.Config{InsecureSkipVerify: true}},
}

在2020-11-30 19:19:43,ytxingnotifications@github.com写道:

Hi, I got the same problem. Do you solve it? How? @BoogalooXiang

Nice day:)

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or unsubscribe.

Zack-Tsang commented 1 year ago

Hi, I tested go run main.go -bind ":8088" on a terminal and go run client/main.go https://localhost:8088 on another terminal I got the error:

Closing session with error:ProofInvalid Connection fec6298ed2bab059 closed panic: Get https://localhost:8088/demo/tiles: ProofInvalid

I have the _id_rsa, idrsa.pub and _authorizedkeys file in ~/.ssh I read the README.md, it seems that the privkey.pem and fullchain.pem file in invalid So I need to get a new privkey.pem and fullchain.pem in example file right? : -)

Hi! Have you test the script files provided by Quentin De Coninck in the guide link "https://multipath-quic.org/2017/12/09/artifacts-available.html", like quic_mptcp_https_tests_expdes_wsp_lowbdp_quic.py.